-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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": "ccoutputstyles",
"version": "1.0.6",
"description": "Claude Code output style templates gallery and CLI installer",
"main": "dist/cli/index.js",
"bin": {
"ccoutputstyles": "./bin/ccoutputstyles"
},
"scripts": {
"dev": "next dev",
"build": "npm run build:cli && npm run build:web",
"build:cli": "tsc -p tsconfig.cli.json",
"build:web": "next build",
"start": "next start",
"prepublishOnly": "npm run build:cli",
"release": "npm version patch && npm run build:cli && npm publish",
"release:minor": "npm version minor && npm run build:cli && npm publish",
"release:major": "npm version major && npm run build:cli && npm publish",
"prerelease": "npm run build:cli"
},
"keywords": [
"claude",
"code",
"output-styles",
"templates",
"cli"
],
"author": "",
"license": "MIT",
"files": [
"dist",
"bin",
"templates",
"README.md"
],
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^24.3.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"axios": "^1.11.0",
"chalk": "^5.6.0",
"cheerio": "^1.1.2",
"clsx": "^2.1.1",
"commander": "^14.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.541.0",
"next": "^15.5.0",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0"
}
}