-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "clrun",
"version": "1.2.0",
"description": "The Interactive CLI for AI Agents — persistent, deterministic, project-scoped execution substrate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clrun": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"postinstall": "node -e \"try{require('fs').chmodSync(require('path').join('node_modules','node-pty','prebuilds',process.platform+'-'+process.arch,'spawn-helper'),0o755)}catch{}\"",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"cli",
"ai",
"agents",
"pty",
"terminal",
"interactive",
"execution",
"deterministic"
],
"author": "cybertheory",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cybertheory/clrun.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^13.1.0",
"node-pty": "^1.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^22.13.4",
"openai": "^4.77.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}