-
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) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.25 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": "critic-loop",
"version": "0.1.0",
"description": "A Claude Code powered critique-loop CLI for turning goals into files.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"critic-loop": "dist/cli.js"
},
"files": [
"dist",
"docs/images",
"scripts/generate-doc-assets.mjs",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Lin-A1/CriticLoop.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "node node_modules/typescript/lib/tsc.js -p tsconfig.json",
"check": "node node_modules/typescript/lib/tsc.js -p tsconfig.json --noEmit",
"docs:assets": "node scripts/generate-doc-assets.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "npm run build",
"test": "npm run build && node --test test/*.test.mjs",
"verify": "npm run check && npm test && npm run format:check"
},
"devDependencies": {
"@types/node": "^25.9.1",
"prettier": "^3.8.3",
"typescript": "^5.5.0"
},
"dependencies": {
"zod": "^4.4.3"
}
}