@desplega.ai/wts 0.1.1
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/README.md +273 -0
- package/dist/index.js +3437 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@desplega.ai/wts",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Git worktree manager with tmux integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"wts": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "bun src/index.ts",
|
|
14
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
15
|
+
"prepublishOnly": "bun run build",
|
|
16
|
+
"release": "bun run build && bun publish",
|
|
17
|
+
"lint": "biome check src",
|
|
18
|
+
"lint:fix": "biome check --write src",
|
|
19
|
+
"format": "biome format --write src",
|
|
20
|
+
"test": "bun test",
|
|
21
|
+
"tsc:check": "bun tsc --noEmit"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"commander": "^12.1.0",
|
|
25
|
+
"chalk": "^5.4.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@biomejs/biome": "^2.3.9",
|
|
29
|
+
"@types/bun": "latest"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"typescript": "^5"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/anthropics/ai-toolbox.git",
|
|
40
|
+
"directory": "wts"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"git",
|
|
44
|
+
"worktree",
|
|
45
|
+
"tmux",
|
|
46
|
+
"cli",
|
|
47
|
+
"developer-tools"
|
|
48
|
+
],
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"author": "Desplega AI"
|
|
51
|
+
}
|