-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.24 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@liquid-js/qrcode-generator",
"version": "1.1.3",
"description": "QR Code Generator implementation in JavaScript.",
"type": "module",
"main": "./lib/qr-code.js",
"types": "./lib/qr-code.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./lib/qr-code.d.ts",
"default": "./lib/qr-code.js"
},
"./lib/qrcode/QRCode.js": {
"types": "./lib/qrcode/QRCode.d.ts",
"default": "./lib/qrcode/QRCode.js"
},
"./lib/qrcode/QRCodeMinimal.js": {
"types": "./lib/qrcode/QRCodeMinimal.d.ts",
"default": "./lib/qrcode/QRCodeMinimal.js"
},
"./lib/qrcode/QRUtil.js": {
"types": "./lib/qrcode/QRUtil.d.ts",
"default": "./lib/qrcode/QRUtil.js"
},
"./lib/text/stringToBytes_UTF8.js": {
"types": "./lib/text/stringToBytes_UTF8.d.ts",
"default": "./lib/text/stringToBytes_UTF8.js"
},
"./lib/text/stringToBytes_SJIS.js": {
"types": "./lib/text/stringToBytes_SJIS.d.ts",
"default": "./lib/text/stringToBytes_SJIS.js"
}
},
"files": [
"lib"
],
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@stylistic/eslint-plugin": "^5.7.1",
"@testdeck/mocha": "^0.3.3",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "<25.0.0",
"@types/source-map-support": "^0.5.10",
"chai": "^6.2.2",
"clean-package": "^2.2.0",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.5.1",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"npm-check-updates": "^19.3.2",
"rimraf": "^6.1.2",
"source-map-support": "^0.5.21",
"ts-node-maintained": "^10.9.6",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.lib.json",
"test": "mocha -p",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"docs": "typedoc",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/qrcode-generator.git"
},
"keywords": [
"qr",
"qrcode",
"generator"
],
"author": "HitkoDev <development@hitko.si>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Liquid-JS/qrcode-generator/issues"
},
"homepage": "https://styled-qr.liquidjs.io/",
"packageManager": "yarn@4.12.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package"
]
}
}