-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.9 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@vertaaux/cli",
"version": "0.6.2",
"description": "Run automated UX audits, accessibility checks, and performance analysis from the terminal or CI pipelines. Supports policy gating, SARIF output, and multi-page crawling. See https://github.com/VertaaUX/cli#readme for full docs.",
"type": "module",
"main": "dist/index.js",
"bin": {
"vertaa": "dist/index.js"
},
"files": [
"dist",
"schemas",
"README.md",
"CHANGELOG.md",
"MIGRATION.md"
],
"keywords": [
"vertaaux",
"vertaa",
"cli",
"ux",
"audit",
"accessibility",
"a11y",
"ci"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VertaaUX/cli.git"
},
"homepage": "https://github.com/VertaaUX/cli#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"bundleDependencies": [
"@vertaaux/tui"
],
"scripts": {
"prebuild": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/index.js",
"postinstall": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"pretest": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"prepublishOnly": "npm run build && node scripts/verify-package.mjs",
"test": "vitest run --config vitest.config.ts --exclude tests/e2e/**/*.test.ts",
"pretest:e2e": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"test:e2e": "vitest run --config vitest.config.ts tests/e2e/cli-contract.test.ts",
"pretest:e2e:package": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"test:e2e:package": "vitest run --config vitest.config.ts tests/e2e/package-install.test.ts",
"pretest:e2e:ui": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"test:e2e:ui": "vitest --ui --config vitest.config.ts tests/e2e/cli-contract.test.ts",
"pretest:pty": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"test:pty": "vitest run --config vitest.config.pty.ts",
"pretest:snapshot": "node scripts/fix-node-pty-permissions.mjs 2>/dev/null || true",
"test:snapshot": "vitest run --config vitest.config.snapshot.ts"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@vertaaux/sdk": "^2.0.0",
"@vertaaux/tui": "file:../packages/tui",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"cosmiconfig": "^9.0.0",
"dotenv": "^17.2.3",
"minimatch": "^10.1.1",
"semver": "^7.7.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "^20.11.25",
"@types/semver": "^7.7.1",
"@vitest/ui": "^4.0.18",
"node-pty": "^1.1.0",
"strip-ansi": "^7.2.0",
"typescript": "^5.6.3",
"vitest": "^4.0.15"
},
"bugs": {
"url": "https://github.com/VertaaUX/cli/issues"
}
}