-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.08 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
{
"name": "archie",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Static-publishable, multi-media exhibit annotation platform. Monorepo root (ADR-0002 / Q-2).",
"license": "GPL-3.0-only",
"scripts": {
"dev": "bash scripts/dev.sh",
"test": "pnpm -r --no-bail test",
"typecheck": "pnpm -r typecheck",
"build": "pnpm -r build",
"build:gh-pages": "bash scripts/build-gh-pages.sh",
"bundle:baseline": "node scripts/bundle-size.mjs",
"bundle:check": "node scripts/bundle-size.mjs --check",
"capabilities:check": "node scripts/check-tauri-capabilities.mjs",
"sync-dist": "node scripts/sync-dist.mjs",
"sync-dist:check": "node scripts/sync-dist.mjs --check",
"a11y:check": "node scripts/a11y-check.mjs --check",
"a11y:baseline": "node scripts/a11y-check.mjs --update"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.3",
"axe-core": "^4.12.1",
"http-proxy": "^1.18.1",
"playwright": "^1.60.0",
"typescript": "^5.6.3",
"typescript-native": "npm:typescript@^7.0.2",
"vitest": "^3.2.7"
}
}