-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.35 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.35 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
74
75
76
77
{
"name": "@dreamerhyde/aitools",
"version": "1.2.7",
"description": "CLI toolkit for Claude Code developers - code quality, process management, and usage analytics",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"aitools": "./dist/cli.js",
"ai": "./dist/cli.js"
},
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node",
"dev": "bun src/cli.ts",
"start": "bun dist/cli.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build",
"postinstall": "node -e \"console.log('\\n▪ AI Tools installed! Use \\'ai\\' or \\'aitools\\' to get started.\\n')\" 2>/dev/null || true",
"release": "./scripts/release.sh",
"release:patch": "./scripts/release.sh patch",
"release:minor": "./scripts/release.sh minor",
"release:major": "./scripts/release.sh major"
},
"keywords": [
"cli",
"claude-code",
"ai-development",
"code-quality",
"process-management",
"development-tools",
"developer-toolkit"
],
"author": "Albert Liu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dreamerhyde/aitools"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@types/glob": "^9.0.0",
"@types/inquirer": "^9.0.9",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"dotenv": "^17.2.1",
"glob": "^11.0.3",
"ignore": "^7.0.5",
"inquirer": "^12.9.3",
"ora": "^7.0.1",
"smol-toml": "^1.4.2",
"table": "^6.8.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"bun-types": "latest",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "bun@1.0.0",
"files": [
"dist/",
"docs/images/",
"README.md",
"LICENSE"
]
}