-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.38 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.38 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
{
"name": "@lglab/react-qr-code",
"version": "1.4.9",
"description": "React library to generate QR codes",
"author": "LGLab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LGLabGreg/react-qr-code.git",
"directory": "packages/react-qr-code"
},
"homepage": "https://reactqrcode.com",
"keywords": [
"react",
"react-component",
"react-library",
"qr",
"code",
"qrcode",
"qr-code",
"qr-code-generator",
"qr-code-library",
"qr-code-react",
"customizable-qr-code",
"qr-code-with-logo",
"qr-code-svg",
"qr-code-image",
"qr-code-download",
"typescript",
"open-source"
],
"type": "module",
"scripts": {
"build": "tsc -b && vite build"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^18 || ^19"
},
"devDependencies": {
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"globals": "^16.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^7.2.7",
"vite-plugin-dts": "^4.5.4"
}
}