-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.37 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
{
"name": "lambda-styled-qr-code",
"version": "1.0.3",
"description": "Add a style and an image to your QR code",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@napi-rs/canvas": "^0.1.44",
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juaoose/styled-qr-code-node.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"js",
"qrjs",
"qrstyling",
"styling",
"qrbranding",
"branding",
"qrimage",
"image",
"qrlogo",
"logo",
"design"
],
"author": {
"name": "Kirill Loskutov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/juaoose/styled-qr-code/issues"
}
}