-
Notifications
You must be signed in to change notification settings - Fork 305
/
package.json
95 lines (95 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bwip-js",
"version": "4.5.1",
"description": "JavaScript barcode generator supporting over 100 types and standards.",
"exports": {
".": {
"browser": {
"types": "./dist/bwip-js.d.ts",
"import": "./dist/bwip-js.mjs",
"require": "./dist/bwip-js.js",
"script": "./dist/bwip-js-min.js"
},
"electron": {
"node": {
"types": "./dist/bwip-js-node.d.ts",
"import": "./dist/bwip-js-node.mjs",
"require": "./dist/bwip-js-node.js"
},
"types": "./dist/bwip-js.d.ts",
"import": "./dist/bwip-js.mjs",
"default": "./dist/bwip-js.js"
},
"react-native": {
"types": "./dist/bwip-js-rn.d.ts",
"default": "./dist/bwip-js-rn.mjs"
},
"node": {
"types": "./dist/bwip-js-node.d.ts",
"import": "./dist/bwip-js-node.mjs",
"require": "./dist/bwip-js-node.js"
}
},
"./browser": {
"types": "./dist/bwip-js.d.ts",
"import": "./dist/bwip-js.mjs",
"require": "./dist/bwip-js.js"
},
"./node": {
"types": "./dist/bwip-js-node.d.ts",
"import": "./dist/bwip-js-node.mjs",
"require": "./dist/bwip-js-node.js"
},
"./react-native":{
"types": "./dist/bwip-js-rn.d.ts",
"default": "./dist/bwip-js-rn.mjs"
},
"./generic": {
"types": "./dist/bwip-js-gen.d.ts",
"import": "./dist/bwip-js-gen.mjs"
}
},
"main": "./dist/bwip-js-node.js",
"browser": "./dist/bwip-js.js",
"react-native": "./dist/bwip-js-rn.mjs",
"bin": {
"bwip-js": "./bin/bwip-js.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/metafloor/bwip-js.git"
},
"keywords": [
"bar code",
"generator",
"barcode",
"javascript",
"node",
"react",
"react-native",
"typescript",
"browser",
"itf",
"gs1",
"upc",
"ean",
"pdf417",
"matrix",
"datamatrix",
"qrcode",
"databar",
"code128",
"code39",
"svg",
"pdfkit"
],
"author": "Mark Warren <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/metafloor/bwip-js/issues"
},
"homepage": "https://github.com/metafloor/bwip-js"
}