-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.98 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
{
"name": "pwa-debug-ui",
"version": "1.0.0",
"description": "PWA Debug Tooling",
"main": "index.js",
"scripts": {
"start:firefox": "parallelshell \"npm run serve\" \"npm run dev\" ",
"start": "parallelshell \"npm run serve\" \"npm run dev:chromium\" ",
"serve": "live-server --host=localhost --port=8080 --entry-file=\"./demos/index.html\" --no-browser ",
"prepare-build": "node ./build-scripts/prepare-build.js",
"prepare-build:chromium": "node ./build-scripts/prepare-build-chromium.js",
"build": "npm run prepare-build && npm run vite-build",
"build:chromium": "npm run prepare-build:chromium && npm run vite-build",
"vite-build": "npm run vite-build-background && npm run vite-build-panel && npm run vite-build-content && npm run vite-build-devtools",
"vite-build-devtools": "vite build --config vite.config.devtools.ts",
"vite-build-content": "vite build --config vite.config.content.ts",
"vite-build-panel": "vite build --config vite.config.panel.ts",
"vite-build-background": "vite build --config vite.config.background.ts",
"web-ext": "npm run build && npm run web-ext:dev",
"web-ext:chromium": "npm run build:chromium && npm run web-ext:dev-chromium",
"web-ext:dev": "web-ext run --source-dir ./dist/ --start-url http://localhost:8080/demos/index.html",
"web-ext:dev-chromium": "web-ext run --source-dir ./dist/ --start-url http://localhost:8080/demos/index.html --target=chromium",
"on-change:build": "chokidar \"./scripts\" -c \"npm run build\"",
"dev": "parallelshell \"npm run on-change:build\" \"npm run web-ext\"",
"dev:chromium": "parallelshell \"npm run on-change:build\" \"npm run web-ext:chromium\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binomed/pwa-sw-debugger.git"
},
"keywords": [
"countdown",
"game",
"js",
"lit",
"devfest"
],
"author": "jefbinomed",
"license": "MIT",
"bugs": {
"url": "https://github.com/binomed/pwa-sw-debugger/issues"
},
"homepage": "https://github.com/binomed/pwa-sw-debugger#readme",
"devDependencies": {
"@types/chrome": "^0.0.269",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^18.15.11",
"chokidar-cli": "^3.0.0",
"firebase-tools": "^11.30.0",
"live-server": "^1.2.2",
"parallelshell": "^3.0.1",
"sass": "^1.60.0",
"shelljs": "^0.8.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"web-ext": "^8.2.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"@picocss/pico": "^2.0.6",
"@types/webextension-polyfill": "^0.12.0",
"firebase": "^9.19.1",
"firebaseui": "^6.0.2",
"lit": "^2.7.1"
}
}