-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 847 Bytes
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
{
"name": "qrcode-gen",
"version": "1.0.0",
"description": "A modern, production-ready QR Code generator CLI built with TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"generate": "tsc && node dist/index.js",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"qr-code",
"qrcode",
"generator",
"typescript",
"cli",
"png"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/qrcode": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0"
},
"dependencies": {
"canvas": "^3.2.3",
"qrcode": "^1.5.3"
}
}