@desplega.ai/wts 0.1.1 → 0.1.2
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/dist/index.js +53 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1874,6 +1874,58 @@ var {
|
|
|
1874
1874
|
Option,
|
|
1875
1875
|
Help
|
|
1876
1876
|
} = import__.default;
|
|
1877
|
+
// package.json
|
|
1878
|
+
var package_default = {
|
|
1879
|
+
name: "@desplega.ai/wts",
|
|
1880
|
+
version: "0.1.2",
|
|
1881
|
+
description: "Git worktree manager with tmux integration",
|
|
1882
|
+
type: "module",
|
|
1883
|
+
bin: {
|
|
1884
|
+
wts: "./dist/index.js"
|
|
1885
|
+
},
|
|
1886
|
+
files: [
|
|
1887
|
+
"dist"
|
|
1888
|
+
],
|
|
1889
|
+
scripts: {
|
|
1890
|
+
dev: "bun src/index.ts",
|
|
1891
|
+
build: "bun build src/index.ts --outdir dist --target node --format esm",
|
|
1892
|
+
prepublishOnly: "bun run build",
|
|
1893
|
+
release: "bun run build && bun publish",
|
|
1894
|
+
lint: "biome check src",
|
|
1895
|
+
"lint:fix": "biome check --write src",
|
|
1896
|
+
format: "biome format --write src",
|
|
1897
|
+
test: "bun test",
|
|
1898
|
+
"tsc:check": "bun tsc --noEmit"
|
|
1899
|
+
},
|
|
1900
|
+
dependencies: {
|
|
1901
|
+
commander: "^12.1.0",
|
|
1902
|
+
chalk: "^5.4.1"
|
|
1903
|
+
},
|
|
1904
|
+
devDependencies: {
|
|
1905
|
+
"@biomejs/biome": "^2.3.9",
|
|
1906
|
+
"@types/bun": "latest"
|
|
1907
|
+
},
|
|
1908
|
+
peerDependencies: {
|
|
1909
|
+
typescript: "^5"
|
|
1910
|
+
},
|
|
1911
|
+
publishConfig: {
|
|
1912
|
+
access: "public"
|
|
1913
|
+
},
|
|
1914
|
+
repository: {
|
|
1915
|
+
type: "git",
|
|
1916
|
+
url: "https://github.com/anthropics/ai-toolbox.git",
|
|
1917
|
+
directory: "wts"
|
|
1918
|
+
},
|
|
1919
|
+
keywords: [
|
|
1920
|
+
"git",
|
|
1921
|
+
"worktree",
|
|
1922
|
+
"tmux",
|
|
1923
|
+
"cli",
|
|
1924
|
+
"developer-tools"
|
|
1925
|
+
],
|
|
1926
|
+
license: "MIT",
|
|
1927
|
+
author: "Desplega AI"
|
|
1928
|
+
};
|
|
1877
1929
|
|
|
1878
1930
|
// node_modules/commander/esm.mjs
|
|
1879
1931
|
var import__2 = __toESM(require_commander(), 1);
|
|
@@ -3425,7 +3477,7 @@ var switchCommand = new Command2("switch").description("Switch to a worktree (in
|
|
|
3425
3477
|
|
|
3426
3478
|
// src/index.ts
|
|
3427
3479
|
var program3 = new Command;
|
|
3428
|
-
program3.name("wts").description(
|
|
3480
|
+
program3.name("wts").description(package_default.description).version(package_default.version);
|
|
3429
3481
|
program3.addCommand(initCommand);
|
|
3430
3482
|
program3.addCommand(listCommand);
|
|
3431
3483
|
program3.addCommand(createCommand3);
|