santree 0.0.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 +166 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +9 -0
- package/dist/commands/clean.d.ts +10 -0
- package/dist/commands/clean.js +111 -0
- package/dist/commands/commit.d.ts +1 -0
- package/dist/commands/commit.js +163 -0
- package/dist/commands/create.d.ts +16 -0
- package/dist/commands/create.js +181 -0
- package/dist/commands/list.d.ts +1 -0
- package/dist/commands/list.js +106 -0
- package/dist/commands/pr.d.ts +9 -0
- package/dist/commands/pr.js +154 -0
- package/dist/commands/remove.d.ts +11 -0
- package/dist/commands/remove.js +41 -0
- package/dist/commands/setup.d.ts +1 -0
- package/dist/commands/setup.js +90 -0
- package/dist/commands/switch.d.ts +7 -0
- package/dist/commands/switch.js +22 -0
- package/dist/commands/sync.d.ts +9 -0
- package/dist/commands/sync.js +108 -0
- package/dist/commands/work.d.ts +11 -0
- package/dist/commands/work.js +169 -0
- package/dist/lib/git.d.ts +47 -0
- package/dist/lib/git.js +393 -0
- package/dist/lib/github.d.ts +11 -0
- package/dist/lib/github.js +71 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "santree",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Git worktree manager with Linear integration",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Santiago Toscanini",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/santiagotoscanini/santree.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/santiagotoscanini/santree#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/santiagotoscanini/santree/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"git",
|
|
17
|
+
"worktree",
|
|
18
|
+
"cli",
|
|
19
|
+
"linear",
|
|
20
|
+
"github",
|
|
21
|
+
"claude",
|
|
22
|
+
"ai"
|
|
23
|
+
],
|
|
24
|
+
"bin": {
|
|
25
|
+
"santree": "dist/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsc",
|
|
33
|
+
"dev": "tsc --watch",
|
|
34
|
+
"start": "node dist/cli.js",
|
|
35
|
+
"lint": "eslint source",
|
|
36
|
+
"prepublishOnly": "npm run build"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"ink": "^6.0.0",
|
|
43
|
+
"ink-spinner": "^5.0.0",
|
|
44
|
+
"ink-text-input": "^6.0.0",
|
|
45
|
+
"pastel": "^4.0.0",
|
|
46
|
+
"react": "^19.0.0",
|
|
47
|
+
"zod": "^4.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^22.0.0",
|
|
51
|
+
"@types/react": "^19.0.0",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
53
|
+
"@typescript-eslint/parser": "^8.52.0",
|
|
54
|
+
"eslint": "^9.39.2",
|
|
55
|
+
"prettier": "^3.7.4",
|
|
56
|
+
"typescript": "^5.7.0"
|
|
57
|
+
}
|
|
58
|
+
}
|