-
-
Notifications
You must be signed in to change notification settings - Fork 573
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.8 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.8 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@zxing/library",
"version": "0.22.0",
"description": "TypeScript port of ZXing multi-format 1D/2D barcode image processing library.",
"keywords": [
"reader",
"writer",
"decode",
"encode",
"scanner",
"generator",
"barcode",
"qr-code",
"barcode 1d",
"barcode 2d",
"typescript",
"zxing"
],
"authors": [
{
"name": "Adrian Toșcă"
},
{
"name": "David Werth",
"email": "werth.david@gmail.com"
},
{
"name": "Luiz Barni",
"email": "machado@odahcam.com"
}
],
"engines": {
"node": ">= 24.0.0"
},
"license": "Apache-2.0",
"bugs": "https://github.com/zxing-js/library/issues/new",
"repository": {
"type": "git",
"url": "https://github.com/zxing-js/library"
},
"homepage": "https://zxing-js.github.io/library/",
"private": false,
"main": "./cjs/index.js",
"module": "./esm/index.js",
"typings": "./esm/index.d.ts",
"esnext": "./es2015/index.js",
"unpkg": "./umd/index.min.js",
"scripts": {
"lint": "eslint \"./src/**/*.ts\"",
"clean": "shx rm -rf dist output",
"test": "jest",
"cover": "jest --coverage",
"build": "npm run clean && npm run build:es2015 && npm run build:esm && npm run build:esnext && npm run build:cjs && npm run build:umd && npm run build:umd:min && npm run build:copy",
"build:es2015": "tsc --build tsconfig.lib-es2015.json",
"build:esm": "tsc --build tsconfig.lib-esm.json",
"build:esnext": "tsc --build tsconfig.lib-esnext.json",
"build:cjs": "tsc --build tsconfig.lib-cjs.json",
"build:umd": "rollup -c rollup.config.mjs",
"build:umd:min": "cd dist/umd && terser --compress --mangle --source-map --comments -o index.min.js -- index.js && gzip index.min.js -c > index.min.js.gz",
"build:copy": "cp README.md dist && cp package.json dist && cp LICENSE dist",
"tsc": "./node_modules/.bin/tsc"
},
"dependencies": {
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@zxing/text-encoding": "~0.9.0",
"eslint": "^10.2.1",
"jest": "^30.3.0",
"rollup": "^4.60.2",
"seedrandom": "^3.0.5",
"sharp": "^0.34.5",
"shx": "^0.4.0",
"terser": "^5.46.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"optionalDependencies": {
"@zxing/text-encoding": "~0.9.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/zxing-js",
"logo": "https://opencollective.com/zxing-js/logo.txt"
}
}