-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bubblewrap",
"version": "2.0.0",
"description": "Secure sandboxing wrapper for any AI coding assistant or command-line tool using OS-level primitives (bubblewrap on Linux, sandbox-exec on macOS)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"safe-code": "dist/interactive-wrapper.js",
"sandbox": "dist/generic-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soodoku/bubblewrap.git"
},
"bugs": {
"url": "https://github.com/soodoku/bubblewrap/issues"
},
"homepage": "https://github.com/soodoku/bubblewrap#readme",
"scripts": {
"build": "tsc && chmod +x dist/interactive-wrapper.js dist/generic-cli.js",
"dev": "tsx src/interactive-wrapper.ts",
"start": "npm run build && node dist/interactive-wrapper.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"ARCHITECTURE.md",
"SECURITY.md"
],
"keywords": [
"sandbox",
"bubblewrap",
"security",
"ai-agent",
"coding-assistant",
"aider",
"code-puppy",
"cursor",
"copilot",
"safe",
"wrapper"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"minimatch": "^10.1.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.9"
},
"engines": {
"node": ">=18.0.0"
}
}