-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "react-quick-response",
"version": "1.0.6",
"description": "A lightweight React component for generating customizable QR codes as SVG elements with support for embedded content overlays.",
"type": "module",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rfoel/react-quick-response.git"
},
"main": "./dist/react-quick-response.umd.cjs",
"module": "./dist/react-quick-response.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/react-quick-response.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/react-quick-response.umd.cjs"
}
}
},
"keywords": [
"qr-code",
"qrcode",
"react",
"generator",
"svg",
"png",
"no-dependencies"
],
"author": "Rafael Franco",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.16.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"semantic-release": "^24.2.7",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-dts": "^4.5.4"
}
}