-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
80 lines (80 loc) · 3.1 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "material-icons-browser-extension",
"version": "1.8.29",
"description": "Browser Addon that enhances file browsers of version controls with material icons.",
"main": "src/main.ts",
"author": {
"name": "Material Extensions",
"email": "[email protected]",
"url": "https://github.com/material-extensions"
},
"license": "MIT",
"homepage": "https://github.com/material-extensions/material-icons-browser-extension#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/material-extensions/material-icons-browser-extension.git"
},
"bugs": {
"url": "https://github.com/material-extensions/material-icons-browser-extension/issues"
},
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "6.1.2",
"@mui/material": "6.1.2",
"material-icon-theme": "5.13.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"selector-observer": "2.1.6",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@octokit/core": "3.5.1",
"@types/fs-extra": "11.0.4",
"@types/json-stable-stringify": "1.0.36",
"@types/node": "20.14.10",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/webextension-polyfill": "0.10.7",
"dotenv": "16.4.5",
"esbuild": "0.21.5",
"esbuild-sass-plugin": "3.3.1",
"fs-extra": "11.2.0",
"husky": "9.0.11",
"json-stable-stringify": "1.1.1",
"lint-staged": "15.2.7",
"nodemon": "3.1.7",
"npm-run-all": "4.1.5",
"rimraf": "5.0.7",
"sharp": "0.33.4",
"ts-node": "10.9.2",
"typescript": "5.5.2",
"web-ext": "8.2.0"
},
"scripts": {
"prebuild": "rimraf --glob *.zip ./dist",
"build": "run-s build-languages build-src check-type-safety bundle",
"build-languages": "ts-node ./scripts/build-languages.ts",
"build-src": "ts-node ./scripts/build-src.ts",
"build-src-watch": "nodemon --watch ./src --ext ts,tsx,css,html --exec npm run build-src",
"check-type-safety": "tsc -p ./",
"rebuild-logos": "ts-node ./scripts/build-icons.ts",
"bundle": "run-p bundle-edge bundle-chrome bundle-firefox",
"bundle-edge": "zip -r -j github-material-icons-edge-extension.zip dist/chrome-edge",
"bundle-chrome": "zip -r -j github-material-icons-chrome-extension.zip dist/chrome-edge",
"bundle-firefox": "web-ext -s ./dist/firefox/ -n github-material-icons-firefox-extension.zip -a . build --overwrite-dest",
"update-manifest-version": "ts-node ./scripts/update-manifest-version.ts",
"update-upstream-version": "ts-node ./scripts/update-upstream-version.ts",
"update-package-version": "npm version --no-git-tag-version",
"update": "run-s update-upstream-version \"update-package-version patch\" update-manifest-version build",
"release": "run-s \"update-package-version {1}\" update-manifest-version build --",
"lint": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format --write ./src",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "npm run lint",
"*": "npm run format"
}
}