-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.51 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.51 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "etiket",
"version": "0.8.1",
"description": "Zero-dependency barcode & QR code SVG generator. 40+ formats, styled QR codes, tree-shakeable. Pure TypeScript, works everywhere.",
"keywords": [
"aztec",
"barcode",
"codabar",
"code128",
"code39",
"code93",
"data-matrix",
"datamatrix",
"ean13",
"ean8",
"esm",
"generator",
"gs1-128",
"itf",
"label",
"msi",
"pdf417",
"pharmacode",
"qr",
"qr-code",
"qrcode",
"svg",
"tree-shakeable",
"typescript",
"upc",
"zero-dependency"
],
"homepage": "https://github.com/productdevbook/etiket",
"bugs": {
"url": "https://github.com/productdevbook/etiket/issues"
},
"license": "MIT",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/etiket.git"
},
"funding": "https://github.com/sponsors/productdevbook",
"bin": {
"etiket": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./barcode": {
"types": "./dist/barcode.d.mts",
"default": "./dist/barcode.mjs"
},
"./qr": {
"types": "./dist/qr.d.mts",
"default": "./dist/qr.mjs"
},
"./datamatrix": {
"types": "./dist/datamatrix.d.mts",
"default": "./dist/datamatrix.mjs"
},
"./pdf417": {
"types": "./dist/pdf417.d.mts",
"default": "./dist/pdf417.mjs"
},
"./aztec": {
"types": "./dist/aztec.d.mts",
"default": "./dist/aztec.mjs"
}
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check .",
"lint:fix": "oxlint . --fix && oxfmt .",
"fmt": "oxfmt .",
"test": "pnpm lint && pnpm typecheck && vitest run",
"typecheck": "tsgo --noEmit",
"docs:dev": "npx mdzilla ./docs",
"release": "pnpm test && pnpm build && bumpp --commit --tag --push --all",
"prepack": "pnpm build"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"@vitest/coverage-v8": "^4.1.0",
"bumpp": "^11.0.0",
"bwip-js": "^4.8.0",
"citty": "^0.2.1",
"consola": "^3.4.2",
"jsqr": "^1.4.0",
"obuild": "^0.4.32",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"rmqr": "^0.3.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"zbar.wasm": "^2.1.1",
"zxing-wasm": "^3.0.1"
}
}