-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "opencv-qr",
"version": "0.7.0",
"description": "You can use Opencv JS to decode QR codes in photos.",
"main": "./dist/OpencvQr.js",
"types": "./dist/OpencvQr.d.ts",
"license": "Apache-2.0",
"scripts": {
"static": "npx http-server -p 8081 --cors -s",
"start": "npm run static & webpack serve --mode development",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "git+https://github.com/leidenglai/opencv-js-qrcode.git"
},
"keywords": [
"qrcode",
"opencv",
"jsQR"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/leidenglai/opencv-js-qrcode/issues"
},
"homepage": "https://github.com/leidenglai/opencv-js-qrcode#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@types/node": "^20.11.16",
"@types/webpack": "^5.28.5",
"babel-loader": "^9.1.3",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}