-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "colorme-browser-extension",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "ts-node -T build.ts --firefox --chrome",
"build:firefox": "ts-node -T build.ts --firefox",
"build:chrome": "ts-node -T build.ts --chrome",
"lint": "eslint --ext .ts,.js,.vue src",
"run:firefox": "web-ext run -s dist-firefox",
"run:chrome": "web-ext run -s dist-chrome -t chromium",
"package:firefox": "web-ext build -s dist-firefox --overwrite-dest"
},
"dependencies": {
"axios": "0.27.2",
"esbuild": "0.16.14",
"mustache": "4.2.0",
"vue": "3.2.45",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@types/mustache": "4.2.2",
"@types/node": "17.0.33",
"@types/webextension-polyfill": "0.9.2",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"chokidar": "3.5.3",
"esbuild-plugin-vue3": "0.3.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-vue": "9.8.0",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"web-ext": "7.4.0"
}
}