-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.84 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
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
{
"name": "@akamfoad/qrcode",
"version": "0.3.2",
"license": "MIT",
"description": "The library is generating QR codes as SVG, HTML5 Canvas, PNG and JPG files, or text.",
"homepage": "https://akamfoad.github.io/qrcode/",
"bugs": "https://github.com/akamfoad/qrcode/issues",
"repository": "https://github.com/akamfoad/qrcode",
"keywords": [
"svg ",
"canvas",
"qrcode",
"qr-code",
"qr",
"qrcode-generator"
],
"size-limit": [
{
"path": "dist/qrcode.mjs",
"limit": "6.7 kB"
},
{
"path": "dist/cjs/qrcode.cjs",
"limit": "6.97 kB"
}
],
"author": "akamfoad",
"files": [
"dist",
"src"
],
"main": "dist/cjs/qrcode.cjs",
"types": "dist/qrcode.d.mts",
"module": "dist/qrcode.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/qrcode.d.mts",
"default": "./dist/qrcode.mjs"
},
"require": {
"types": "./dist/cjs/qrcode.d.ts",
"default": "./dist/cjs/qrcode.cjs"
}
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"size": "size-limit",
"start": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint": "eslint",
"prepare": "tsup && husky install",
"docs": "typedoc --options typedoc.json"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"size-limit": "^11.0.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@akamfoad/qr": "^0.4.0"
}
}