arbella 0.1.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/LICENSE +21 -0
- package/README.md +203 -0
- package/dist/index.js +7677 -0
- package/dist/index.js.map +1 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "arbella",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Set up your AI coding tools once, then rebuild that setup on any machine. Claude Code, Codex & Cursor — Linux, macOS, Windows.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Fabio Schmickl <schmickl.fabio@gmail.com>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Fafoooo/arbella.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Fafoooo/arbella/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/Fafoooo/arbella#readme",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"claude-code",
|
|
18
|
+
"codex",
|
|
19
|
+
"cursor",
|
|
20
|
+
"backup",
|
|
21
|
+
"migration",
|
|
22
|
+
"cli",
|
|
23
|
+
"dotfiles",
|
|
24
|
+
"ai"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"arbella": "dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest",
|
|
42
|
+
"dev": "tsx src/index.ts",
|
|
43
|
+
"prepack": "npm run build",
|
|
44
|
+
"prepublishOnly": "npm run typecheck && npm run test"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^0.7.0",
|
|
48
|
+
"commander": "^12.1.0",
|
|
49
|
+
"execa": "^9.5.1",
|
|
50
|
+
"picocolors": "^1.1.1",
|
|
51
|
+
"smol-toml": "^1.3.1",
|
|
52
|
+
"zod": "^3.23.8"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^22.9.0",
|
|
56
|
+
"tsup": "^8.3.5",
|
|
57
|
+
"tsx": "^4.19.2",
|
|
58
|
+
"typescript": "^5.6.3",
|
|
59
|
+
"vitest": "^2.1.5"
|
|
60
|
+
}
|
|
61
|
+
}
|