-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "accessibility-devkit-workspace",
"private": true,
"author": {
"name": "Luke Steuber",
"email": "luke@lukesteuber.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/actually-useful-ai/accessibility-devkit.git"
},
"bugs": {
"url": "https://github.com/actually-useful-ai/accessibility-devkit/issues"
},
"homepage": "https://github.com/actually-useful-ai/accessibility-devkit#readme",
"scripts": {
"build": "pnpm --filter @accessibility-devkit/core build && pnpm --filter=\"./packages/*\" --filter=\"!@accessibility-devkit/core\" --parallel build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"spelling": "cspell --config cspell.json README.md SECURITY.md THIRD_PARTY_NOTICES.md docs/*.md examples/*.md packages/*/README.md python/README.md skills/accessibility/references/*.md",
"test:docs": "node --test tests/plugin/accessibility-scenarios.test.mjs tests/plugin/alt-text-guidance.test.mjs tests/plugin/specialists.test.mjs tests/docs/adoption-quick-start.test.mjs",
"test:manifests": "node --test tests/plugin/manifests.test.mjs",
"test:packages": "pnpm --filter=\"./packages/*\" --parallel test",
"test:python": "/usr/bin/env PYTHONPATH=python/src python3 -m unittest discover -s python/tests -v",
"test:contracts": "node --test tests/contracts/report-parity.test.mjs",
"test:consumers": "node tests/consumers/esm.mjs && node tests/consumers/commonjs.cjs && tsc --noEmit -p tests/consumers/tsconfig.json",
"test:pack": "node scripts/check-packages.mjs",
"test": "pnpm build && pnpm spelling && pnpm test:docs && pnpm test:manifests && pnpm test:packages && pnpm test:python && pnpm test:contracts && pnpm test:consumers",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm test && pnpm test:pack && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"ajv": "^8.17.1",
"cspell": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@11.9.0"
}