-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.29 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
{
"name": "slotscope",
"private": true,
"type": "module",
"packageManager": "pnpm@11.17.0",
"engines": {
"node": "24.18.0"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc -b",
"test:unit": "vitest run",
"test:fixtures": "vitest run packages/fixtures",
"test:e2e": "pnpm --filter @slotscope/web test:e2e",
"test:a11y": "pnpm --filter @slotscope/web exec playwright test e2e/accessibility.spec.ts",
"fixtures:verify": "node scripts/verify-fixtures.ts",
"build:check": "node scripts/check-bundle.ts",
"benchmark:v0.1": "node scripts/benchmark-report.ts",
"release:verify": "node scripts/release-verify.ts",
"deps:policy": "node scripts/check-dependency-policy.ts",
"build": "pnpm --filter @slotscope/web build",
"benchmark:trace": "node scripts/trace-benchmark.ts"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.8.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"fast-check": "4.9.0",
"globals": "17.8.0",
"prettier": "3.9.6",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vitest": "4.1.10"
}
}