-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.85 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
{
"name": "qrverse",
"version": "1.0.1",
"description": "A comprehensive QR code generation framework with advanced features including dynamic QR codes, analytics, security, and customization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"docs": "typedoc src/index.ts"
},
"keywords": [
"qr-code",
"qr-generator",
"dynamic-qr",
"analytics",
"qr-customization",
"qr-security",
"barcode"
],
"author": "Julio Amorim <julioamorimdev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/julioamorimdev/qrverse.git"
},
"bugs": {
"url": "https://github.com/julioamorimdev/qrverse/issues"
},
"homepage": "https://github.com/julioamorimdev/qrverse#readme",
"dependencies": {
"qrcode": "^1.5.3",
"crypto-js": "^4.2.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.8",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"geoip-lite": "^1.4.10",
"useragent": "^2.3.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/qrcode": "^1.5.5",
"@types/crypto-js": "^4.2.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.14",
"@types/geoip-lite": "^1.4.4",
"@types/useragent": "^2.3.4",
"@types/uuid": "^9.0.7",
"@types/sharp": "^0.32.0",
"@types/jest": "^29.5.11",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"typedoc": "^0.25.7"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
}
}