-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 Bytes
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
{
"name": "clawsecure-railgun",
"version": "0.5.1",
"description": "Deterministic workflow orchestration for AI agents. Your agents don't get to improvise.",
"type": "module",
"private": true,
"author": "ClawSecure Inc.",
"repository": {
"type": "git",
"url": "https://github.com/ClawSecure/railgun.git"
},
"engines": {
"node": ">=22"
},
"bin": {
"clawsecure-railgun": "dist/cli/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && cp src/server/index.html dist/server/index.html && chmod +x dist/cli/cli.js && node scripts/inject-version.js",
"start": "node dist/cli/cli.js"
},
"dependencies": {
"json5": "^2.2.3",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/node": "^25.2.1",
"typescript": "^5.9.3"
}
}