-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.34 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": "svelte-reactive-debugger",
"version": "0.0.0",
"description": "Easily monitor svelte reactive statements",
"main": "index.js",
"scripts": {
"dev": "npm run dev --prefix app",
"start": "npm run dev & web-ext run -s extension -u http://localhost:8888 -u about:debugging#/runtime/this-firefox && kill $!",
"build:icons": "for size in 16 24 32 48 96 128; do if [ ! -e extension/icons/icon-$size.png -o logo/logo.svg -nt extension/icons/icon-$size.png ]; then svgexport logo/logo.svg extension/icons/icon-$size.png $size:; fi; done",
"build": "npm run build --prefix app && npm run build:icons && web-ext build -s extension --overwrite-dest && git archive -o web-ext-artifacts/code.zip HEAD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlocomqx/svelte-reactive-debugger.git"
},
"keywords": [
"svelte",
"extension"
],
"author": "unlocomqx",
"license": "ISC",
"bugs": {
"url": "https://github.com/unlocomqx/svelte-reactive-debugger/issues"
},
"homepage": "https://github.com/unlocomqx/svelte-reactive-debugger#readme",
"devDependencies": {
"@types/chrome": "^0.0.204",
"sass": "^1.56.2",
"svgexport": "^0.4.1",
"typescript": "^4.1.3",
"web-ext": "^5.4.1"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"javascript-stringify": "^2.0.1"
}
}