-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "@point-of-sale/webserial-barcode-scanner",
"version": "1.2.1",
"type": "module",
"exports": {
"browser": {
"import": "./dist/webserial-barcode-scanner.esm.js",
"require": "./dist/webserial-barcode-scanner.umd.js",
"script": "./dist/webserial-barcode-scanner.umd.js"
}
},
"module": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NielsLeenheer/WebSerialBarcodeScanner.git"
},
"keywords": [
"serial",
"webserial",
"barcode",
"scanner",
"honeywell",
"voyager"
],
"author": "Niels Leenheer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NielsLeenheer/WebSerialBarcodeScanner/issues"
},
"homepage": "https://github.com/NielsLeenheer/WebSerialBarcodeScanner#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"rollup": "^3.20.7"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist"
],
"dependencies": {
"@point-of-sale/barcode-parser": "^1.0.1"
}
}