-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.07 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
{
"name": "coreprotect-extension",
"version": "2.3.1",
"description": "",
"scripts": {
"build-chrome-manifest": "node buildscripts/manifest.js manifests/basemanifest.json manifests/chromemanifest.json src/manifest.json $npm_package_version",
"build-firefox-manifest": "node buildscripts/manifest.js manifests/basemanifest.json manifests/firefoxmanifest.json src/manifest.json $npm_package_version",
"build-chrome": "npm run build-chrome-manifest && BROWSER=chrome BACKEND='https://coreprotect-workers.matthewjurenka.workers.dev' npm run webpack && npm run zip",
"build-dev-chrome": "npm run build-chrome-manifest && BROWSER=chrome BACKEND='http://127.0.0.1:8787' npm run webpack",
"build-firefox": "npm run build-firefox-manifest && BROWSER=firefox BACKEND='https://coreprotect-workers.matthewjurenka.workers.dev' npm run webpack && npm run zip",
"zip": "node buildscripts/zip-upload.js",
"webpack": "webpack --config webpack/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattjurenka/coreprotect-extension.git"
},
"author": "Matthew Jurenka",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattjurenka/coreprotect-extension/issues"
},
"homepage": "https://github.com/mattjurenka/coreprotect-extension#readme",
"type": "module",
"devDependencies": {
"@types/chrome": "^0.0.202",
"@types/webextension-polyfill": "^0.9.1",
"adm-zip": "^0.5.9",
"autoprefixer": "^10.4.13",
"copy-webpack-plugin": "^11.0.0",
"mini-css-extract-plugin": "^2.7.0",
"postcss": "^8.4.19",
"svelte": "^3.53.1",
"svelte-loader": "^3.1.4",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.4",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@sveltejs/adapter-auto": "^1.0.0-next.88",
"css-loader": "^6.7.2",
"decimal.js": "^10.4.3",
"ethers": "^5.7.2",
"immer": "^9.0.18",
"rxjs": "^7.8.0",
"string-replace-loader": "^3.1.0",
"webextension-polyfill": "^0.10.0"
}
}