-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.34 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
{
"name": "uisfx-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"check:agents": "node --import tsx scripts/check-agent-docs.ts",
"dev": "turbo run dev --filter=@uisfx/showcase",
"generate": "node --import tsx scripts/generate-library.ts",
"privacy:check": "node scripts/privacy-check.mjs",
"report:audio": "node --import tsx scripts/audio-report.ts",
"report:browser": "npm run build --workspace=uisfx && node scripts/browser-conformance.mjs",
"report:package": "npm run build --workspace=uisfx && node scripts/package-budget.mjs",
"report:quality": "node --import tsx scripts/audio-quality.ts",
"test": "turbo run test",
"typecheck": "npm run build --workspace=uisfx && tsc -p tsconfig.json --noEmit && turbo run typecheck",
"check": "npm run privacy:check && npm run generate && npm run report:quality && npm run check:agents && npm run typecheck && npm run test && npm run build && npm run report:audio && npm run report:package && npm run report:browser"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"turbo": "^2.10.4",
"typescript": "^5.9.3"
},
"engines": {
"node": "^22.20.0 || ^24.11.0 || >=26.0.0"
},
"packageManager": "npm@11.4.2"
}