-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.3 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
{
"name": "shielded-shell",
"private": true,
"version": "0.1.0",
"description": "Zero-trust local safety harness for CLI coding agents",
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"build": "node scripts/build.mjs",
"test": "npm run test -w @shieldedshell/core",
"lint": "npm run build",
"website:dev": "npm run dev -w website",
"website:build": "npm run build -w website",
"website:preview": "npm run preview -w website",
"pack:check": "npm run build && npm pack -w @shieldedshell/core --dry-run && npm pack -w @shieldedshell/cli --dry-run",
"publish:npm": "npm run test && npm run build && npm publish -w @shieldedshell/core --access public --tag beta && npm publish -w @shieldedshell/cli --access public --tag beta",
"publish:npm:private": "npm run test && npm run build && npm publish -w @shieldedshell/core --access restricted && npm publish -w @shieldedshell/cli --access restricted",
"shieldedshell": "node packages/cli/dist/index.js"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/connerkup/shielded-shell/issues"
},
"homepage": "https://github.com/connerkup/shielded-shell#readme",
"repository": {
"type": "git",
"url": "https://github.com/connerkup/shielded-shell.git"
}
}