-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.18 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.18 KB
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
{
"name": "lnbits-extension",
"version": "0.0.4",
"description": "LNbits browser extension",
"scripts": {
"manifest:firefox": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/firefox.manifest.json > src/manifest.json",
"manifest:chrome": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/chrome.manifest.json > src/manifest.json",
"manifest:opera": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/opera.manifest.json > src/manifest.json",
"dev:firefox": "rm -rf dist && npm run manifest:firefox && mix",
"dev:chrome": "rm -rf dist && npm run manifest:chrome && mix",
"dev:opera": "rm -rf dist && npm run manifest:opera && mix",
"prod:firefox": "rm -rf dist && npm run manifest:firefox && mix --production",
"prod:chrome": "rm -rf dist && npm run manifest:chrome && mix --production",
"prod:opera": "rm -rf dist && npm run manifest:opera && mix --production",
"watch:chrome": "npm run manifest:chrome && && mix watch",
"build:firefox": "npm run prod:firefox && rm -rf dist-zip && npm run zip",
"build:chrome": "npm run prod:chrome && rm -rf dist-zip && npm run zip",
"build:opera": "npm run prod:opera && rm -rf dist-zip && npm run zip",
"zip": "rm -rf dist-zip && node scripts/build-zip.js",
"format": "prettier --write 'src/assets/**/*.{css,js,vue}'",
"pre-commit": "lint-staged"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ln-zap/bolt11": "^1.2.8-beta.3",
"axios": "^0.21.1",
"jquery": "^3.6.0",
"laravel-mix": "^6.0.11",
"lodash": "^4.17.21",
"qrcode": "^1.4.4",
"qrcode-decoder": "^0.1.3",
"quasar": "^1.13.2",
"vue": "^2.6.12",
"vue-loader": "^15.9.6",
"vue-qrcode": "^0.4.0",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"archiver": "^5.3.0",
"lint-staged": "^10.5.3",
"node-jq": "^1.12.0",
"postcss": "^8.2.15",
"prettier": "2.2.1",
"resolve-url-loader": "^3.1.3",
"sass": "^1.32.13",
"sass-loader": "^11.1.1"
},
"lint-staged": {
"*.{css,js,vue}": [
"prettier --write"
]
}
}