-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 898 Bytes
/
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
{
"name": "zxing-qr-reader",
"version": "2.0.0",
"description": "QR code reader based on ZXing C++ port by @nu-book compiled to wasm for use in the web.",
"browser": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode development && python3 ./post_build.dev.py",
"build:dev": "webpack build --mode development && python3 ./post_build.dev.py",
"build:prod": "webpack build --mode production && python3 ./post_build.prod.py"
},
"keywords": [
"zxing",
"zxing-qr-reader"
],
"repository": {
"type": "git",
"url": "https://github.com/nxtexe/zxing-qr-reader.git"
},
"author": "nxte",
"license": "Apache-2.0",
"devDependencies": {
"rimraf": "^3.0.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}