-
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.34 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.34 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": "chrome-github-icons",
"description": "Cross-browser extension that replaces GitHub file icons with Material Design icons.",
"private": true,
"version": "0.10.0",
"type": "module",
"scripts": {
"sync:assets": "tsx scripts/copy-icons.ts",
"sync:readme": "tsx scripts/update-readme.ts",
"dev": "npm run sync:assets && wxt",
"dev:firefox": "npm run sync:assets && wxt -b firefox",
"build": "npm run sync:assets && wxt build",
"build:firefox": "npm run sync:assets && wxt build -b firefox",
"build:safari": "npm run sync:assets && wxt build -b safari",
"chrome": "npm run sync:assets && wxt zip",
"firefox": "npm run sync:assets && wxt zip -b firefox",
"safari": "npm run sync:assets && wxt zip -b safari",
"zip": "npm run sync:assets && wxt zip",
"zip:firefox": "npm run sync:assets && wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "npm run sync:assets && wxt prepare"
},
"dependencies": {
"@iconify-json/vscode-icons": "^1.2.45",
"@peoplesgrocers/seti-ui-file-icons": "^1.11.3",
"material-icon-theme": "^5.32.0",
"selector-observer": "^2.1.6",
"vscode-icons-js": "^11.6.1",
"vscode-symbols": "^0.0.20"
},
"devDependencies": {
"@iconify-json/catppuccin": "^1.2.17",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"wxt": "^0.20.18"
}
}