-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "upiqr",
"version": "1.3.20",
"description": "Generate NPCI's UPI QR code along with UPI intent link, By using it any payment is possible from UPI enabled apps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"minify": "jsmin -o dist/types/upiqr.d.ts dist/types/upiqr.d.ts && jsmin -o dist/index.d.ts dist/index.d.ts && uglifyjs -o dist/index.js dist/index.js --mangle",
"build": "tsc && npm run minify"
},
"repository": {
"type": "git",
"url": "https://github.com/bhar4t/upiqr"
},
"keywords": [
"upi",
"upiqr",
"qrcode",
"payment",
"accept payment",
"upi qr code generator",
"qr code generator",
"upi qr code",
"NPCI"
],
"publishConfig": {
"provenance": true
},
"author": "Bharat Sahu",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bhar4t/"
},
"dependencies": {
"qrcode": "^1.4.4"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@types/qrcode": "^1.5.1",
"typescript": "^5.2.2"
}
}