-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 785 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
25
26
27
28
29
30
{
"name": "@dynamoi/chrome-extension",
"version": "1.0.0",
"description": "Displays enhanced music data on Spotify's web app. Quickly see popularity, genres, label, and UPC as you browse.",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"lint": "echo 'no lint configured'",
"postinstall": "wxt prepare"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/chrome": "^0.1.37",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@wxt-dev/module-react": "^1.2.2",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.8.0",
"wxt": "^0.20.19"
}
}