-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "qris-dynamicify",
"version": "1.1.0",
"description": "Transform static QRIS into dynamic QRIS effortlessly. Designed for modern payment integrations in Indonesia.",
"keywords": [
"qris",
"qris-dynamic",
"qris-static",
"qris-converter",
"indonesia-payment",
"payment",
"qr-code",
"qr-payment"
],
"homepage": "https://github.com/XanderID/qris-dynamicify#readme",
"bugs": {
"url": "https://github.com/XanderID/qris-dynamicify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XanderID/qris-dynamicify.git"
},
"license": "Apache-2.0",
"author": "XanderID",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/qris-dynamicify.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
},
"browser": {
"types": "./dist/types/index.d.ts",
"default": "./dist/browser/qris-dynamicify.js"
}
}
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.json",
"build:browser": "vite build",
"build:all": "npm run build:cjs && npm run build:esm && npm run build:browser",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"jimp": "^0.22.12",
"jsqr": "^1.4.0",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@types/bun": "^1.2.23",
"@types/node": "^20.14.12",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.45.0",
"vite": "^5.3.5"
}
}