-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.74 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.74 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
{
"name": "pot-cli",
"version": "0.8.4",
"description": "Multi-model AI verification with adversarial critique. No AI can verify itself — so they verify each other.",
"main": "dist/index.js",
"bin": {
"pot-cli": "dist/index.js",
"pot": "dist/index.js"
},
"exports": {
".": "./dist/index.js",
"./plan": {
"types": "./dist/plan/graded-support-evaluator.d.ts",
"default": "./dist/plan/graded-support-evaluator.js"
},
"./plv": {
"types": "./dist/plan/graded-support-evaluator.d.ts",
"default": "./dist/plan/graded-support-evaluator.js"
},
"./rv": {
"types": "./dist/rv/index.d.ts",
"default": "./dist/rv/index.js"
},
"./cascade": {
"types": "./dist/plan/cross-model-cascade.d.ts",
"default": "./dist/plan/cross-model-cascade.js"
},
"./verdict": {
"types": "./dist/verdict-mapper.d.ts",
"default": "./dist/verdict-mapper.js"
},
"./tier1": {
"types": "./dist/plan/tier1-prefilter.d.ts",
"default": "./dist/plan/tier1-prefilter.js"
},
"./model-router": {
"types": "./dist/utils/model-router.d.ts",
"default": "./dist/utils/model-router.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"scripts": {
"build": "tsc && npm run build:fixtures",
"build:fixtures": "mkdir -p dist/plan/__fixtures__ && cp -r src/plan/__fixtures__/. dist/plan/__fixtures__/",
"dev": "tsup src/index.ts --format esm --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "node dist/index.js ask 'Test question' --dry-run",
"test:plan": "node --test dist/plan/test-*.js dist/plan/probes/test-*.js",
"check:boundaries": "node scripts/check-product-boundaries.mjs",
"smoke:v1": "bash scripts/smoke-v1.sh"
},
"keywords": [
"ai",
"verification",
"multi-model",
"adversarial",
"code-review",
"debugging",
"compliance",
"audit",
"llm",
"cli",
"byok"
],
"author": "ThoughtProof <raul@thoughtproof.ai> (https://thoughtproof.ai)",
"license": "MIT",
"homepage": "https://thoughtproof.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/ThoughtProof/pot-cli.git"
},
"bugs": {
"url": "https://github.com/ThoughtProof/pot-cli/issues"
},
"dependencies": {
"@pot-sdk2/bridge": "^1.2.0",
"better-sqlite3": "^12.8.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.11.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"type": "module"
}