-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.28 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.28 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "checkmateai",
"version": "0.1.6",
"description": "AI-powered specs verification that block bad code, challenges AI's overconfidence, and prevent AI from breaking your code",
"main": "dist/index.js",
"type": "module",
"bin": {
"checkmateai": "./bin/checkmateai",
"checkmate": "./bin/checkmate"
},
"files": [
"dist",
"bin",
"scripts"
],
"scripts": {
"test": "node tests/unit/commands/test-gen.mjs",
"test:coverage": "node tests/run-coverage.mjs",
"test:all": "./scripts/test-coverage.sh",
"build": "tsc",
"dev": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node src/index.ts",
"checkmate": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node src/index.ts",
"status": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node src/index.ts",
"stats": "node dist/commands/stats.js",
"mcp": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node src/mcp/index.ts",
"setup-mcp": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node src/commands/setup-mcp.ts",
"prepare": "npm run build",
"spec-snapshot": "node scripts/spec-snapshot.js create",
"spec-verify": "node scripts/spec-snapshot.js verify",
"spec-diff": "node scripts/spec-snapshot.js diff",
"enforce": "node scripts/cm-enforce.js",
"fix-checkboxes": "node scripts/fix-prefilled-checkboxes.js",
"fix-check-format": "node scripts/fix-check-format.js",
"start": "node dist/index.js"
},
"keywords": [
"tdd",
"testing",
"ai",
"specs",
"markdown",
"cursor",
"mcp"
],
"author": "Richardson Dackam",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/string-similarity": "^4.0.2",
"@types/yargs": "^17.0.33",
"execa": "^9.5.2",
"simple-git": "^3.27.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.1",
"@types/better-sqlite3": "^7.6.13",
"@types/uuid": "^10.0.0",
"ai": "^2.2.34",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"ava": "^6.3.0",
"axios": "^1.9.0",
"better-sqlite3": "^11.9.1",
"chai": "^5.2.0",
"cli-table3": "^0.6.5",
"clipboardy": "^4.0.0",
"diff": "^7.0.0",
"dotenv": "^16.5.0",
"enquirer": "^2.4.1",
"fast-glob": "^3.3.3",
"glob": "^11.0.2",
"js-yaml": "^4.1.0",
"mocha": "^11.2.2",
"openai": "^4.29.0",
"ora": "^8.2.0",
"psl": "^1.9.0",
"punycode.js": "^2.3.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"sinon": "^20.0.0",
"string-similarity": "^4.0.4",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uuid": "^11.1.0",
"vfile": "^6.0.3",
"vfile-reporter": "^8.1.1",
"zod": "^3.24.3",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"yaml": "^2.7.1",
"yargs": "^17.7.2",
"inquirer": "^12.6.0",
"chokidar": "^4.0.3"
},
"overrides": {
"punycode": "npm:punycode.js@^2.3.1"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/richardsondx/checkmate.git"
},
"bugs": {
"url": "https://github.com/richardsondx/checkmate/issues"
},
"homepage": "https://github.com/richardsondx/checkmate#readme"
}