forked from Piebald-AI/tweakcc
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.69 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.69 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tweakcc-fixed",
"version": "1.0.5",
"type": "module",
"description": "Temporary fork of tweakcc with pending upstream fixes cherry-picked and additional patches for Claude Code 2.1.128+ compatibility.",
"main": "dist/lib/index.mjs",
"types": "dist/lib/index.d.ts",
"bin": {
"tweakcc-fixed": "./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",
"prepublishOnly": "pnpm build"
},
"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"
},
"contributors": [
{
"name": "Ben",
"email": "Ben@noreply.cathedral.gg",
"url": "https://github.com/BenIsLegit"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BenIsLegit/tweakcc-fixed.git"
},
"homepage": "https://github.com/BenIsLegit/tweakcc-fixed#readme",
"bugs": {
"url": "https://github.com/BenIsLegit/tweakcc-fixed/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"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.1.1",
"oxfmt": "^0.28.0",
"react": "^19.1.1",
"wasmagic": "^1.0.7",
"which": "^6.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}