-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 799 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
{
"name": "runlock",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"description": "Audit a command on your laptop, lock what it touched, rerun it under a macOS seatbelt.",
"author": "mcbbugu",
"bin": { "runlock": "dist/cli.js" },
"files": ["dist"],
"engines": { "node": ">=20" },
"keywords": ["cli", "sandbox", "seatbelt", "audit", "supply-chain", "macos"],
"repository": { "type": "git", "url": "git+https://github.com/mcbbugu/runlock.git" },
"homepage": "https://github.com/mcbbugu/runlock#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc",
"test": "tsx --test test/parse.test.ts test/sbpl.test.ts",
"start": "tsx src/cli.ts",
"prepare": "tsc"
}
}