-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.2 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.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
83
84
85
86
87
88
89
90
91
92
{
"name": "tweakcc",
"version": "4.0.13",
"type": "module",
"description": "Command-line tool to customize your Claude Code theme colors, thinking verbs and more.",
"main": "dist/lib/index.mjs",
"types": "dist/lib/index.d.ts",
"bin": {
"tweakcc": "./dist/index.mjs"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.mjs"
}
},
"scripts": {
"build": "tsc --noEmit && tsdown --minify --dts src/index.tsx src/lib/index.ts",
"build:dev": "tsdown --dts src/index.tsx src/lib/index.ts",
"watch": "tsdown --watch --dts src/index.tsx src/lib/index.ts",
"start": "node dist/index.mjs",
"lint": "tsc --noEmit && eslint src",
"test": "vitest run",
"test:dev": "vitest",
"format": "prettier --write src",
"prepare": "husky"
},
"keywords": [
"cli",
"terminal",
"ink",
"react",
"typescript",
"claude",
"claude-code",
"customize",
"installation",
"theme",
"claude-code-theme",
"system-prompts",
"toolsets"
],
"author": {
"name": "Piebald LLC",
"email": "support@piebald.ai",
"url": "https://piebald.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Piebald-AI/tweakcc.git"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^20.19.10",
"@types/react": "^18.3.23",
"@types/which": "^3.0.4",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"tsdown": "^0.18.4",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write",
"*.{json,md}": "prettier --write"
},
"dependencies": {
"chalk": "^5.5.0",
"cli-spinners": "^3.4.0",
"commander": "^14.0.0",
"diff": "^8.0.3",
"globby": "^14.1.0",
"gray-matter": "^4.0.3",
"ink": "^6.1.0",
"ink-link": "^4.1.0",
"node-lief": "^1.3.0",
"oxfmt": "^0.28.0",
"react": "^19.1.1",
"wasmagic": "^1.0.7",
"which": "^6.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}