-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1016 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1016 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "zhan-stack",
"version": "0.2",
"description": "Chrome extension to analyze technology stacks of GitHub repositories",
"main": "index.js",
"type": "module",
"scripts": {
"build": "wxt build",
"dev": "wxt dev --browser=chrome",
"dev:firefox": "wxt dev --browser=firefox",
"zip": "wxt zip",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check .",
"gen:icon": "node scripts/process-icon.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"chrome-extension",
"github",
"tech-stack",
"analyzer"
],
"author": "squirrel",
"license": "MIT",
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/chrome": "^0.1.37",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wxt": "^0.20.18"
}
}