vibebox 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.dockerignore ADDED
@@ -0,0 +1,13 @@
1
+ node_modules
2
+ dist
3
+ .git
4
+ .gitignore
5
+ *.md
6
+ .vscode
7
+ .idea
8
+ *.log
9
+ npm-debug.log*
10
+ yarn-debug.log*
11
+ yarn-error.log*
12
+ .DS_Store
13
+ Thumbs.db
package/LICENSE ADDED
@@ -0,0 +1 @@
1
+ 2025-present (c) Giuseppe Gurgone
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Vibebox
2
+
3
+ Coming soon..
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "vibebox",
3
+ "version": "0.0.0",
4
+ "description": "Sandboxed AI coding sessions with Claude Code in Docker containers",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "vibebox": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "dev": "tsc --watch",
12
+ "test": "echo \"Error: no test specified\" && exit 1"
13
+ },
14
+ "keywords": [
15
+ "cli",
16
+ "docker",
17
+ "claude",
18
+ "ai",
19
+ "sandbox"
20
+ ],
21
+ "author": "",
22
+ "license": "",
23
+ "dependencies": {
24
+ "chalk": "^4.1.2",
25
+ "commander": "^12.1.0",
26
+ "ora": "^5.4.1"
27
+ },
28
+ "devDependencies": {
29
+ "@anthropic-ai/claude-code": "^1.0.53",
30
+ "@types/node": "^20.14.0",
31
+ "prettier": "^3.6.2",
32
+ "typescript": "^5.8.3"
33
+ },
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ }
37
+ }