-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "csstats-plus",
"description": "Enhances the CSStats website",
"private": true,
"version": "2.2.6",
"type": "module",
"scripts": {
"dev": "wxt -b edge",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:all": "pnpm build && pnpm build:firefox && pnpm build:edge",
"build:edge": "wxt build -b edge",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:all": "pnpm zip && pnpm zip:firefox && pnpm zip:edge",
"zip:edge": "wxt zip -b edge",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"prepublish": "pnpm build:all && pnpm zip:all",
"lint": "pnpm exec biome format --write && pnpm exec biome lint --fix"
},
"dependencies": {
"chart.js": "^4.5.1",
"react": "^19.2.5",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"@wxt-dev/module-react": "^1.2.2",
"typescript": "^6.0.3",
"wxt": "^0.20.25"
}
}