-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@askrjs/charts",
"version": "0.3.0",
"description": "Typed Canvas 2D plots and SVG export for Askr applications.",
"keywords": [
"askr",
"canvas",
"charts",
"plotting",
"visualization",
"vite-plus"
],
"homepage": "https://github.com/askrjs/askr-charts#readme",
"bugs": {
"url": "https://github.com/askrjs/askr-charts/issues"
},
"license": "Apache-2.0",
"author": {
"name": "askrjs",
"url": "https://github.com/askrjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askrjs/askr-charts.git"
},
"files": [
"dist",
"docs",
"examples",
"CHARTING.md",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": [
"./dist/styles.css"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles": {
"types": "./dist/styles.d.ts",
"import": "./dist/styles.css",
"default": "./dist/styles.css"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev:visual": "vp dev visual --host 127.0.0.1",
"bench": "npm run bench:tier1 && npm run bench:tier2 && npm run bench:tier3",
"bench:tier1": "cross-env NODE_ENV=production vp test bench --run --reporter=default --config vitest.bench.tier1.config.ts",
"bench:tier2": "cross-env NODE_ENV=production vp test bench --run --reporter=default --config vitest.bench.tier2.config.ts",
"bench:tier3": "cross-env NODE_ENV=production vp test bench --run --config vitest.bench.tier3.config.ts",
"test": "npm run test:unit && npm run test:checks && npm run test:jsdom && npm run test:browser && npm run test:visual",
"test:unit": "vp test run -c vitest.test.unit.config.ts",
"test:jsdom": "vp test run -c vitest.test.jsdom.config.ts",
"test:browser": "playwright test",
"test:visual": "playwright test tests/visual",
"test:types": "npm run build && tsc -p tsconfig.types.json --noEmit",
"test:installed": "npm run build && node tests/installed-smoke.js",
"test:publint": "publint",
"fmt": "vp fmt .",
"lint": "vp lint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "vp pack",
"pack:check": "node tests/package-artifacts.js",
"check": "npm run lint && npm run typecheck && npm test && npm run test:types && npm run test:installed && npm run test:publint && npm run pack:check",
"prepack": "npm run build",
"prepublishOnly": "npm run check",
"test:checks": "vp test run -c vitest.test.checks.config.ts"
},
"devDependencies": {
"@askrjs/askr": ">=0.3.0 <0.4.0",
"@askrjs/ui": ">=0.3.0 <0.4.0",
"@askrjs/vite": ">=0.3.0 <0.4.0",
"@playwright/test": "1.62.1",
"@types/jsdom": "^30.0.0",
"@types/node": "^26.3.0",
"@typescript/native": "npm:typescript@^7.0.2",
"cross-env": "^10.1.0",
"jsdom": "^30.0.1",
"playwright": "1.62.1",
"publint": "^0.3.24",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vite-plus": "^0.3.1"
},
"peerDependencies": {
"@askrjs/askr": ">=0.3.0 <0.4.0"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@12.0.1",
"askr": {
"update": {
"ignore": [
"@playwright/test",
"playwright"
]
}
}
}