-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 734 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "claude-usage-tracker",
"version": "1.0.0",
"description": "Chrome extension for visual feedback on Claude.ai usage efficiency",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "vite build",
"preview": "vite preview",
"package": "npm run build && cd dist && zip -r ../extension.zip .",
"clean": "rm -rf dist extension.zip",
"type-check": "tsc --noEmit",
"test": "npx playwright test",
"generate-icons": "node scripts/generate-icons.js"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/chrome": "^0.0.254",
"@types/node": "^20.11.0",
"sharp": "^0.34.5",
"typescript": "^5.3.0",
"vite": "^5.0.0"
}
}