@kythin/stackydo 0.9.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/.gitignore +2 -0
- package/LICENSE +21 -0
- package/README.md +368 -0
- package/binary-install.js +212 -0
- package/binary.js +128 -0
- package/install.js +4 -0
- package/npm-shrinkwrap.json +547 -0
- package/package.json +117 -0
- package/run-stackydo-mcp.js +4 -0
- package/run-stackydo.js +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"artifactDownloadUrls": [
|
|
3
|
+
"https://github.com/kythin/stackydo-cli/releases/download/v0.9.2"
|
|
4
|
+
],
|
|
5
|
+
"bin": {
|
|
6
|
+
"stackydo": "run-stackydo.js",
|
|
7
|
+
"stackydo-mcp": "run-stackydo-mcp.js"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"axios": "^1.13.5",
|
|
11
|
+
"axios-proxy-builder": "^0.1.2",
|
|
12
|
+
"console.table": "^0.10.0",
|
|
13
|
+
"detect-libc": "^2.1.2",
|
|
14
|
+
"rimraf": "^6.1.3"
|
|
15
|
+
},
|
|
16
|
+
"description": "Context-aware CLI task manager, based on the best task management system I ever had; a stack of todo's on sticky notes. Designed for maximum flexibility and AI-friendly workflow support!",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"prettier": "^3.8.1"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=14",
|
|
22
|
+
"npm": ">=6"
|
|
23
|
+
},
|
|
24
|
+
"glibcMinimum": {
|
|
25
|
+
"major": 2,
|
|
26
|
+
"series": 35
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/kythin/stackydo-cli",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"name": "@kythin/stackydo",
|
|
31
|
+
"preferUnplugged": true,
|
|
32
|
+
"repository": "https://github.com/kythin/stackydo-cli",
|
|
33
|
+
"scripts": {
|
|
34
|
+
"fmt": "prettier --write **/*.js",
|
|
35
|
+
"fmt:check": "prettier --check **/*.js",
|
|
36
|
+
"postinstall": "node ./install.js"
|
|
37
|
+
},
|
|
38
|
+
"supportedPlatforms": {
|
|
39
|
+
"aarch64-apple-darwin": {
|
|
40
|
+
"artifactName": "stackydo-aarch64-apple-darwin.tar.xz",
|
|
41
|
+
"bins": {
|
|
42
|
+
"stackydo": "stackydo",
|
|
43
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
44
|
+
},
|
|
45
|
+
"zipExt": ".tar.xz"
|
|
46
|
+
},
|
|
47
|
+
"aarch64-pc-windows-msvc": {
|
|
48
|
+
"artifactName": "stackydo-x86_64-pc-windows-msvc.zip",
|
|
49
|
+
"bins": {
|
|
50
|
+
"stackydo": "stackydo.exe",
|
|
51
|
+
"stackydo-mcp": "stackydo-mcp.exe"
|
|
52
|
+
},
|
|
53
|
+
"zipExt": ".zip"
|
|
54
|
+
},
|
|
55
|
+
"aarch64-unknown-linux-gnu": {
|
|
56
|
+
"artifactName": "stackydo-aarch64-unknown-linux-gnu.tar.xz",
|
|
57
|
+
"bins": {
|
|
58
|
+
"stackydo": "stackydo",
|
|
59
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
60
|
+
},
|
|
61
|
+
"zipExt": ".tar.xz"
|
|
62
|
+
},
|
|
63
|
+
"x86_64-apple-darwin": {
|
|
64
|
+
"artifactName": "stackydo-x86_64-apple-darwin.tar.xz",
|
|
65
|
+
"bins": {
|
|
66
|
+
"stackydo": "stackydo",
|
|
67
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
68
|
+
},
|
|
69
|
+
"zipExt": ".tar.xz"
|
|
70
|
+
},
|
|
71
|
+
"x86_64-pc-windows-gnu": {
|
|
72
|
+
"artifactName": "stackydo-x86_64-pc-windows-msvc.zip",
|
|
73
|
+
"bins": {
|
|
74
|
+
"stackydo": "stackydo.exe",
|
|
75
|
+
"stackydo-mcp": "stackydo-mcp.exe"
|
|
76
|
+
},
|
|
77
|
+
"zipExt": ".zip"
|
|
78
|
+
},
|
|
79
|
+
"x86_64-pc-windows-msvc": {
|
|
80
|
+
"artifactName": "stackydo-x86_64-pc-windows-msvc.zip",
|
|
81
|
+
"bins": {
|
|
82
|
+
"stackydo": "stackydo.exe",
|
|
83
|
+
"stackydo-mcp": "stackydo-mcp.exe"
|
|
84
|
+
},
|
|
85
|
+
"zipExt": ".zip"
|
|
86
|
+
},
|
|
87
|
+
"x86_64-unknown-linux-gnu": {
|
|
88
|
+
"artifactName": "stackydo-x86_64-unknown-linux-gnu.tar.xz",
|
|
89
|
+
"bins": {
|
|
90
|
+
"stackydo": "stackydo",
|
|
91
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
92
|
+
},
|
|
93
|
+
"zipExt": ".tar.xz"
|
|
94
|
+
},
|
|
95
|
+
"x86_64-unknown-linux-musl-dynamic": {
|
|
96
|
+
"artifactName": "stackydo-x86_64-unknown-linux-musl.tar.xz",
|
|
97
|
+
"bins": {
|
|
98
|
+
"stackydo": "stackydo",
|
|
99
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
100
|
+
},
|
|
101
|
+
"zipExt": ".tar.xz"
|
|
102
|
+
},
|
|
103
|
+
"x86_64-unknown-linux-musl-static": {
|
|
104
|
+
"artifactName": "stackydo-x86_64-unknown-linux-musl.tar.xz",
|
|
105
|
+
"bins": {
|
|
106
|
+
"stackydo": "stackydo",
|
|
107
|
+
"stackydo-mcp": "stackydo-mcp"
|
|
108
|
+
},
|
|
109
|
+
"zipExt": ".tar.xz"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"version": "0.9.2",
|
|
113
|
+
"volta": {
|
|
114
|
+
"node": "18.14.1",
|
|
115
|
+
"npm": "9.5.0"
|
|
116
|
+
}
|
|
117
|
+
}
|
package/run-stackydo.js
ADDED