-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.79 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
{
"name": "piral-inspector",
"version": "0.11.1",
"description": "A DevTools extension for Piral instances and their pilets.",
"keywords": [
"piral",
"pilet",
"devtools",
"browser",
"chrome",
"firefox",
"extension"
],
"author": "smapiot",
"homepage": "https://piral.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smapiot/piral-inspector.git"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/smapiot/piral-inspector/issues"
},
"browserslist": [
"last 5 chrome version",
"last 5 firefox version"
],
"scripts": {
"start": "npm run watch:firefox",
"build:all": "npm run build:firefox && npm run build:opera && npm run build:chrome && npm run build:edge",
"watch:firefox": "concurrently --kill-others \"npm run watch:parcel firefox\" \"npm run watch:web-ext -- -s dist/firefox -t firefox-desktop\"",
"build:firefox": "npm run build:parcel firefox && npm run build:web-ext -- -s dist/firefox -a web-ext-artifacts/firefox --overwrite-dest",
"watch:chrome": "concurrently --kill-others \"npm run watch:parcel chrome\" \"npm run watch:web-ext -- -s dist/chrome -t chromium\"",
"build:chrome": "npm run build:parcel chrome && npm run build:web-ext -- -s dist/chrome -a web-ext-artifacts/chrome --overwrite-dest",
"watch:opera": "concurrently --kill-others \"npm run watch:parcel opera\" \"npm run watch:web-ext -- -s dist/opera -t chromium\"",
"build:opera": "npm run build:parcel opera && npm run build:web-ext -- -s dist/opera -a web-ext-artifacts/opera --overwrite-dest",
"watch:edge": "concurrently --kill-others \"npm run watch:parcel edge\" \"npm run watch:web-ext -- -s dist/edge -t chromium\"",
"build:edge": "npm run build:parcel edge && npm run build:web-ext -- -s dist/edge -a web-ext-artifacts/edge --overwrite-dest",
"watch:parcel": "node tools/serve.mjs",
"build:parcel": "node tools/build.mjs",
"watch:web-ext": "wait-on -d 6000 package.json && web-ext run",
"build:web-ext": "web-ext build",
"prettify": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/dagre": "^0.7.47",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/webextension-polyfill": "^0.10.7",
"concurrently": "^8",
"esbuild": "^0.20.0",
"esbuild-copy-static-files": "^0.1.0",
"prettier": "^3",
"typescript": "^5",
"wait-on": "^7",
"web-ext": "^7"
},
"dependencies": {
"@emotion/core": "^10.1.1",
"bootstrap": "^5",
"dagre": "^0.8.5",
"react": "^17",
"react-d3-tree": "^3.2.1",
"react-dom": "^17",
"react-flow-renderer": "^9",
"reactstrap": "^9",
"uuidv4": "^6.2.12",
"webextension-polyfill": "^0.10.0",
"zustand": "^4"
}
}