-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
116 lines (116 loc) · 3.05 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "qreator",
"version": "9.1.1",
"description": "QR Code generator for browser and node.js with tree shaking and logo support",
"homepage": "https://github.com/Short-io/qreator",
"keywords": [
"qrcode",
"qr code",
"qr",
"png",
"svg",
"pdf",
"image"
],
"author": {
"name": "Andrii Kostenko",
"url": "http://git.io/gugu"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Short-io/qreator.git"
},
"bugs": "https://github.com/Short-io/qreator/issues",
"type": "module",
"main": "lib/qr.js",
"exports": {
"./lib/png": {
"node": "./lib/png.js",
"types": "./lib/png.d.ts",
"default": "./lib/png_browser.js"
},
"./lib/svg": {
"types": "./lib/svg.d.ts",
"default": "./lib/svg.js"
},
"./lib/pdf": {
"types": "./lib/pdf.d.ts",
"default": "./lib/pdf.js"
},
"./lib/react": {
"types": "./lib/react.d.ts",
"default": "./lib/react.js"
}
},
"scripts": {
"test": "ava",
"prepare": "tsc && rollup -c",
"release": "release-it"
},
"size-limit": [
{
"path": "lib/qr.js"
}
],
"files": [
"lib",
"src",
"LICENSE"
],
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/color-string": "^1.5.5",
"@types/diff": "^5.2.1",
"@types/jsdom": "^21.1.6",
"@types/pixelmatch": "^5.2.6",
"@types/react": "^18.3.1",
"@types/sharp": "^0.31.1",
"@types/svg-path-parser": "^1.1.6",
"ava": "^6.1.3",
"benchmark": "^2.1.4",
"canvas": "npm:@napi-rs/canvas@^0.1.52",
"chalk": "^5.3.0",
"diff": "^5.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^24.0.0",
"looks-same": "^9.0.0",
"microtime": "^3.1.1",
"path2d-polyfill": "^3.1.0",
"pixelmatch": "^5.3.0",
"react": "^18.3.1",
"rollup": "^4.18.0",
"size-limit": "^11.1.4",
"svg-path-parser": "^1.1.0",
"typescript": "^5.4.5",
"xml-formatter": "^3.6.2"
},
"dependencies": {
"@types/react-dom": "^18.3.1",
"color-string": "^1.9.1",
"js-base64": "^3.7.7",
"pdf-lib": "^1.17.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5"
},
"overrides": {
"jsdom": {
"canvas": "^0.1.50"
},
"sharp": "$sharp"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}