-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "ccrewind",
"version": "1.3.0",
"description": "Spotify Wrapped for your Claude Code usage — terminal report + Claude Code slash command",
"bin": {
"ccrewind": "dist/ccrewind-tui.mjs"
},
"files": [
"dist/"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"test": "jest",
"build:tui": "esbuild scripts/ccrewind-tui.ts --bundle --platform=node --format=esm --outfile=dist/ccrewind-tui.mjs --alias:@=./src --banner:js='#!/usr/bin/env node'",
"setup:command": "node dist/ccrewind-tui.mjs --setup",
"prepublishOnly": "npm run build:tui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Junaid2005/ccrewind.git"
},
"keywords": [],
"author": "Junaid2005",
"license": "ISC",
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/Junaid2005/ccrewind/issues"
},
"homepage": "https://ccrewind.com",
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/d3": "^7.4.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"d3": "^7.9.0",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"framer-motion": "^12.38.0",
"html-to-image": "^1.11.13",
"html2canvas": "^1.4.1",
"jest": "^30.3.0",
"jimp": "^1.6.0",
"next": "^16.2.1",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"ts-jest": "^29.4.6",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.2"
}
}