-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2 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
78
79
80
81
82
{
"name": "z-claude-code",
"version": "1.1.0",
"description": "The zsh for Claude Code - Power tools for AI-assisted development",
"main": "dist/cli.js",
"bin": {
"zcc": "dist/cli.js"
},
"scripts": {
"build": "npm run validate && node scripts/build.js",
"build:types": "tsc --emitDeclarationOnly",
"watch": "tsc --watch",
"dev": "tsx src/cli.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"validate": "node scripts/validate-dependencies.js",
"prepublishOnly": "npm run test && npm run build",
"postinstall": "echo 'Thank you for installing zcc! Run \"zcc --help\" to get started.'"
},
"keywords": [
"claude",
"claude-code",
"ai",
"cli",
"zsh",
"oh-my-zsh",
"themes",
"plugins",
"meta-framework",
"developer-tools",
"productivity",
"customization",
"automation"
],
"author": "zcc Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/git-on-my-level/zcc.git"
},
"bugs": {
"url": "https://github.com/git-on-my-level/zcc/issues"
},
"homepage": "https://github.com/git-on-my-level/zcc#readme",
"files": [
"dist/",
"templates/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"ajv": "^8.17.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"execa": "^8.0.1",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.15",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"sanitize-filename": "^1.6.3",
"tar": "^6.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.1",
"@types/tar": "^6.1.13",
"esbuild": "^0.19.11",
"jest": "^29.7.0",
"memfs": "^4.38.2",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}