-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "janus-gate",
"version": "0.5.0",
"description": "Janus — AI-native decision gate for PRD/spec markdown.",
"license": "MIT",
"author": "devonestar",
"repository": {
"type": "git",
"url": "git+https://github.com/devonestar/janus.git"
},
"homepage": "https://github.com/devonestar/janus#readme",
"bugs": {
"url": "https://github.com/devonestar/janus/issues"
},
"type": "module",
"bin": {
"janus": "./dist/index.js"
},
"files": [
"dist/",
"fixtures/smoke.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "./dist/index.js eval fixtures/smoke.md --backend mock && ./dist/index.js doctor && node scripts/test-no-tools-flag.mjs && node scripts/test-doctor.mjs",
"check:intake": "node scripts/check-intake.mjs",
"self-dev": "node scripts/self-dev.mjs"
},
"dependencies": {
"commander": "^12.0.0",
"yaml": "^2.4.0"
},
"keywords": [
"ai",
"agent",
"cli",
"prd",
"spec",
"decision-gate",
"evaluation",
"robustness",
"planning",
"review",
"markdown",
"llm",
"claude",
"codex",
"developer-tools"
],
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}