-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "barcodes-handler",
"version": "0.0.4",
"description": "A lightweight Node.js library for reading and writing multiple barcodes on a single image.",
"keywords": [
"barcodes",
"Multiple QRCode reader",
"QRCode",
"Code128",
"barcode-reader",
"barcode-writer"
],
"homepage": "https://github.com/GreenFlag31/barcodes-handler#readme",
"bugs": {
"url": "https://github.com/GreenFlag31/barcodes-handler/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreenFlag31/barcodes-handler.git"
},
"license": "MIT",
"author": "Manu Claeys <unam31@gmail.com>",
"main": "index.js",
"scripts": {
"test": "npm run build && node --test",
"build": "rimraf dist && tsc && @powershell copy './package.json' 'dist/' && @powershell copy 'README.md' 'dist/' ",
"start:dev": "tsc-watch --onSuccess \"node dist/index.js\""
},
"dependencies": {
"@napi-rs/canvas": "0.1.64",
"sharp": "0.33.5",
"zxing-wasm": "^1.3.4"
},
"devDependencies": {
"@types/node": "^20.12.7",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typedoc": "^0.26.10",
"typedoc-github-theme": "^0.1.2"
}
}