-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "cc-transcript-react",
"version": "0.1.4",
"description": "React component for displaying Claude Code transcripts",
"license": "MIT",
"author": "satetsu888",
"repository": {
"type": "git",
"url": "https://github.com/satetsu888/cc-transcript-react.git"
},
"homepage": "https://github.com/satetsu888/cc-transcript-react",
"keywords": [
"react",
"claude",
"claude-code",
"transcript",
"component"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./headless": {
"types": "./dist/headless.d.ts",
"import": "./dist/headless.js"
},
"./styles.css": "./dist/index.css"
},
"bin": {
"cc-transcript-react": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.562.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.14",
"@storybook/react-vite": "^8.6.15",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.1.0",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^8.6.15",
"tailwindcss": "^3.4.19",
"tsup": "^8.0.0",
"typescript": "~5.9.3"
}
}