-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "@shellshield/shellshield",
"version": "1.1.0",
"description": "The ultimate safety shield for your terminal. Prevents accidental file destruction.",
"type": "module",
"main": "src/index.ts",
"bin": {
"shellshield": "bin/shellshield"
},
"scripts": {
"dev": "bun run src/index.ts",
"test": "SHELLSHIELD_MODE=enforce bun test --max-concurrency 1 --timeout 15000",
"build": "bun build src/index.ts --compile --outfile dist/shellshield",
"build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/shellshield-linux",
"build:macos": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/shellshield-macos",
"build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/shellshield-windows.exe",
"build:all": "bun run build:linux && bun run build:macos && bun run build:windows"
},
"keywords": ["opencode", "hook", "safety", "trash"],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/bun": "latest",
"@types/shell-quote": "^1.7.5"
},
"dependencies": {
"shell-quote": "^1.8.3",
"zod": "^4.3.6"
}
}