-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 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
{
"name": "@pythonluvr/openwar",
"version": "0.13.0",
"description": "Runtime that enforces the OpenWar framework: phase-aware agent loop with confirmation, blocker, and destructive-action gates.",
"license": "MIT",
"type": "module",
"bin": {
"openwar": "bin/openwar"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
},
"./detectors": {
"types": "./dist/detectors/index.d.ts",
"import": "./dist/detectors/index.js"
},
"./framework": "./openwar.md"
},
"files": [
"dist",
"bin",
"openwar.md",
"templates",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "node -e \"import('node:fs').then(f=>f.rmSync('dist',{recursive:true,force:true}))\"",
"prepublishOnly": "npm run clean && npm run build",
"test": "node scripts/run-tests.mjs",
"test:watch": "node scripts/run-tests.mjs --watch",
"test:coverage": "node scripts/check-coverage.mjs",
"lint:em-dashes": "node scripts/check-em-dashes.mjs",
"lint:sanity": "node scripts/check-sanity.mjs",
"lint": "npm run lint:em-dashes && npm run lint:sanity",
"check": "npm run lint && npm run build && npm run test",
"check:strict": "npm run lint && npm run build && npm run test:coverage"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@pythonluvr/squire": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
},
"keywords": [
"openwar",
"agent",
"framework",
"llm",
"claude",
"openai",
"gemini",
"phase-gated",
"runtime"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pythonluvr/openwar.git"
},
"homepage": "https://github.com/pythonluvr/openwar#readme",
"bugs": {
"url": "https://github.com/pythonluvr/openwar/issues"
}
}