-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
72 lines (72 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "barcode-scanner",
"version": "1.0.0",
"description": "A Progressive Web Application (PWA) that scans barcodes of various formats, using the Barcode Detection API.",
"source": "src/index.html",
"scripts": {
"lint": "eslint src/js/**",
"format": "prettier --ignore-unknown --write .",
"clean": "rimraf dist .parcel-cache",
"generateSW": "workbox generateSW",
"start": "parcel",
"build:parcel": "parcel build --dist-dir=dist --public-url=./",
"build": "npm-run-all clean build:parcel",
"postbuild": "npm run generateSW",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georapbox/barcode-scanner.git"
},
"keywords": [
"aztec",
"code_128",
"code_39",
"code_93",
"codabar",
"data_matrix",
"ean_13",
"ean_8",
"itf",
"pdf417",
"qr_code",
"upc_a",
"upc_e",
"scanner"
],
"author": {
"name": "George Raptis",
"email": "georapbox@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/georapbox/barcode-scanner/issues"
},
"homepage": "https://github.com/georapbox/barcode-scanner#readme",
"devDependencies": {
"@eslint/js": "~9.12.0",
"@parcel/packager-raw-url": "~2.12.0",
"@parcel/transformer-webmanifest": "~2.12.0",
"eslint": "~9.12.0",
"gh-pages": "~6.2.0",
"globals": "~15.11.0",
"npm-run-all": "~4.1.5",
"parcel": "~2.12.0",
"prettier": "~3.3.3",
"process": "~0.11.10",
"rimraf": "~6.0.1",
"workbox-cli": "~7.1.0"
},
"dependencies": {
"@georapbox/a-tab-group": "~2.4.1",
"@georapbox/clipboard-copy-element": "~3.0.2",
"@georapbox/files-dropzone-element": "~2.0.1",
"@georapbox/modal-element": "~1.8.0",
"@georapbox/resize-observer-element": "~2.0.1",
"@georapbox/web-share-element": "~3.1.1",
"barcode-detector": "~2.2.11",
"idb-keyval": "~6.2.1"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}