-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.86 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
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
{
"name": "material-icons-browser-extension",
"version": "1.16.3",
"description": "Browser Addon that enhances file browsers of version controls with material icons.",
"main": "src/main.ts",
"author": {
"name": "Material Extensions",
"email": "material-icons-extensions@googlegroups.com",
"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.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "7.2.0",
"@mui/material": "7.2.0",
"material-icon-theme": "5.37.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"selector-observer": "2.1.6",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@playwright/test": "1.60.0",
"@testing-library/dom": "10.4.1",
"@types/fs-extra": "11.0.4",
"@types/node": "24.0.14",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/webextension-polyfill": "0.12.3",
"esbuild": "0.25.6",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "16.1.2",
"nodemon": "3.1.10",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"sharp": "0.34.3",
"tsx": "4.22.3",
"typescript": "5.8.3",
"vitest": "4.1.7",
"web-ext": "8.9.0"
},
"scripts": {
"prebuild": "rimraf --glob *.zip ./dist",
"build": "run-s build-src check-type-safety bundle",
"build-src": "tsx ./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": "tsx ./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": "tsx ./scripts/update-manifest-version.ts",
"update-upstream-version": "tsx ./scripts/update-upstream-version.ts",
"update-versions": "run-s update-upstream-version update-manifest-version",
"lint": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format --write ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "npm run lint",
"*": "npm run format"
}
}