-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.48 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.48 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
{
"name": "arrow-workspace",
"version": "1.0.6",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/standardagents/arrow-js"
},
"homepage": "https://github.com/standardagents/arrow-js#readme",
"bugs": {
"url": "https://github.com/standardagents/arrow-js/issues"
},
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "pnpm --filter @arrow-js/docs dev",
"build:runtime": "pnpm --filter @arrow-js/core build:runtime",
"build": "pnpm --filter @arrow-js/core build && pnpm --filter @arrow-js/docs build",
"preview": "pnpm --filter @arrow-js/docs preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:sandbox": "playwright test -c playwright.sandbox.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"verify": "pnpm typecheck && pnpm test && pnpm build",
"install:browsers": "playwright install",
"benchmark:setup": "node bench/js-framework-benchmark/setup.mjs",
"benchmark:sync": "node bench/js-framework-benchmark/sync.mjs",
"benchmark:smoke": "node bench/js-framework-benchmark/run.mjs --preset smoke",
"benchmark:core": "node bench/js-framework-benchmark/run.mjs --preset core",
"benchmark:targets": "node bench/js-framework-benchmark/run.mjs --preset targets",
"benchmark:breadth": "node bench/js-framework-benchmark/run.mjs --preset breadth",
"benchmark:run": "node bench/js-framework-benchmark/run.mjs --",
"benchmark:analyze": "node bench/js-framework-benchmark/analyze-trace.mjs",
"smoke:create-arrow-js": "node scripts/smoke-create-arrow-js.mjs",
"release": "node scripts/release.mjs",
"release:next": "node scripts/release.mjs --tag=next",
"release:dev": "node scripts/release.mjs --tag=dev"
},
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@playwright/test": "^1.58.2",
"@rollup/plugin-typescript": "^12.1.4",
"@shikijs/engine-oniguruma": "^4.0.2",
"@shikijs/vscode-textmate": "^10.0.2",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/node": "^22.16.5",
"@vscode/vsce": "^3.7.1",
"chalk": "^5.6.2",
"execa": "^9.6.0",
"jsdom": "^26.1.0",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"shx": "^0.4.0",
"size-limit": "^11.2.0",
"terser": "^5.44.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}