-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
118 lines (118 loc) · 3.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "atom-material-icons-web",
"version": "13.0.10",
"description": "Atom Material Icons for Web",
"author": "Elior Boukhobza <heliosaian@gmail.com>",
"license": "MIT",
"scripts": {
"preconvert": "rimraf public",
"convert": "npm --prefix iconGenerator run convert",
"prepare": "gulp prepare",
"prebuild": "bun run prepare",
"build": "bun run plasmo:build",
"predev": "bun run prepare",
"dev": "bun run plasmo:dev",
"plasmo:dev": "plasmo dev",
"plasmo:build": "plasmo build --zip",
"prerelease": "bun run build",
"release": "gulp release",
"webext": "web-ext build --overwrite-dest",
"prefirefox": "bun run build && cp firefox/manifest.json .",
"firefox": "bun run webext",
"prechrome": "bun run build && cp chrome/manifest.json .",
"chrome": "bun run release"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@plasmohq/storage": "^1.11.0",
"biome": "^0.3.3",
"js-yaml": "4.1.0",
"lodash.capitalize": "^4.2.1",
"lodash.debounce": "4.0.8",
"plasmo": "0.88.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"select-dom": "9.0.0",
"sirv": "2.0.4",
"sirv-cli": "2.0.2"
},
"devDependencies": {
"@types/bun": "latest",
"@ianvs/prettier-plugin-sort-imports": "4.3.0",
"@types/chrome": "0.0.268",
"@types/node": "20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"polka": "0.5.2",
"rimraf": "^5.0.7",
"prettier": "3.3.2",
"typescript": "5.5.2",
"compression": "1.7.4",
"gulp": "5.0.0",
"gulp-clean": "0.4.0",
"gulp-clean-css": "4.3.0",
"gulp-consolidate": "0.2.0",
"gulp-copy": "4.0.1",
"gulp-iconfont": "11.0.1",
"gulp-rename": "2.0.0",
"gulp-sass": "5.1.0",
"gulp-zip": "6.0.0",
"node-fetch": "3.3.2",
"underscore": "1.13.6",
"web-ext": "8.2.0"
},
"manifest": {
"name": "Atom Material Icons",
"description": "Atom Material Icons for Web (GitHub, BitBucket, Gitee, Azure and GitLab)",
"author": "Elior Boukhobza (Mallowigi)",
"homepage_url": "https://www.material-theme.com",
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "{f0503c92-a634-43fd-912d-63c8fde00586}"
}
},
"host_permissions": [
"http://github.com/*",
"https://github.com/*",
"http://bitbucket.org/*",
"https://bitbucket.org/*",
"http://gitlab.com/*",
"https://gitlab.com/*",
"http://gitee.com/*",
"https://gitee.com/*",
"http://dev.azure.com/*",
"https://dev.azure.com/*"
],
"web_accessible_resources": [
{
"resources": [
"assets/packs/*.svg"
],
"matches": [
"http://github.com/*",
"https://github.com/*",
"http://bitbucket.org/*",
"https://bitbucket.org/*",
"http://gitlab.com/*",
"https://gitlab.com/*",
"http://gitee.com/*",
"https://gitee.com/*",
"http://dev.azure.com/*",
"https://dev.azure.com/*"
]
}
]
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"optionalDependencies": {
"lodash.template": "4.5.0",
"minimist": "1.2.8"
}
}