@fukuchang/taskchute-cli 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 +98 -0
- package/dist/index.js +2250 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fukuchang/taskchute-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TaskChute CLI — E2EE 暗号化された TaskChute タスクをターミナルから操作するための CLI",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "fukuchang",
|
|
7
|
+
"homepage": "https://github.com/fukuchang/TaskChute/tree/main/packages/cli#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/fukuchang/TaskChute.git",
|
|
11
|
+
"directory": "packages/cli"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/fukuchang/TaskChute/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"taskchute",
|
|
18
|
+
"cli",
|
|
19
|
+
"productivity",
|
|
20
|
+
"task-management",
|
|
21
|
+
"e2ee"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"main": "./dist/index.js",
|
|
28
|
+
"bin": {
|
|
29
|
+
"taskchute": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@inquirer/prompts": "^7.0.0",
|
|
41
|
+
"@napi-rs/keyring": "^1.0.0",
|
|
42
|
+
"@scure/bip39": "^2.2.0",
|
|
43
|
+
"@supabase/supabase-js": "^2.105.4",
|
|
44
|
+
"commander": "^14.0.0",
|
|
45
|
+
"hash-wasm": "^4.12.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^24.12.3",
|
|
49
|
+
"tsup": "^8.5.1",
|
|
50
|
+
"tsx": "^4.20.0",
|
|
51
|
+
"typescript": "~6.0.2",
|
|
52
|
+
"@taskchute/crypto": "0.0.0",
|
|
53
|
+
"@taskchute/domain": "0.0.0",
|
|
54
|
+
"@taskchute/infra-supabase": "0.0.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"start": "tsx src/index.ts",
|
|
58
|
+
"build": "tsup",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"test:watch": "vitest",
|
|
62
|
+
"test:coverage": "vitest run --coverage"
|
|
63
|
+
}
|
|
64
|
+
}
|