-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@namewta/fastcli",
"version": "3.2.2",
"description": "终端命令别名和交互式工作流管理工具",
"type": "module",
"author": {
"name": "namewta",
"url": "https://github.com/namewta"
},
"repository": {
"type": "git",
"url": "https://github.com/namewta/fastcli.git"
},
"bugs": {
"url": "https://github.com/namewta/fastcli/issues"
},
"homepage": "https://github.com/namewta/fastcli#readme",
"bin": {
"fastcli": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && pnpm --filter @namewta/fastcli-web build",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"link": "pnpm build && pnpm link -g",
"unlink": "pnpm unlink -g"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"alias",
"workflow",
"terminal",
"command",
"shortcut",
"productivity"
],
"license": "MIT",
"packageManager": "pnpm@10.29.2",
"dependencies": {
"@clack/prompts": "^0.9.0",
"citty": "^0.1.6",
"express": "^5.2.1",
"fuse.js": "^7.0.0",
"open": "^11.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}