-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fir-cli",
"version": "1.0.20",
"description": "A powerful command line tool for daily development, featuring Git operations, code statistics, time management, and AI assistance",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"fir": "./dist/cli.js",
"f": "./dist/cli.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"start": "node --no-deprecation ./dist/index.js",
"dev": "ts-node --no-deprecation src/index.ts",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"publish:local": "npm run build && npm install -g --force",
"publish:npm": "fir push && npm version patch && npm publish && git push --follow-tags"
},
"keywords": [
"cli",
"git",
"ai",
"productivity",
"tools",
"typescript",
"development",
"code-statistics",
"time-management",
"multilingual"
],
"author": "hooke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hookex/one-cli.git"
},
"bugs": {
"url": "https://github.com/hookex/one-cli/issues"
},
"homepage": "https://github.com/hookex/one-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.6.5",
"chalk": "^5.3.0",
"dayjs": "^1.11.10",
"figlet": "^1.7.0",
"inquirer": "^9.3.7",
"node-fetch": "^3.3.2",
"open": "^10.0.3",
"openai": "^4.24.1",
"ora": "^8.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.6",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^2.1.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
}
}