-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "qrcode-react-next",
"version": "1.0.0",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"es",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/qkiroc/qrcode-react.git"
},
"keywords": [
"qrcode",
"react"
],
"scripts": {
"dev": "vite",
"build": "vite build --mode lib && cp src/types.d.ts lib/types.d.ts && cp src/types.d.ts es/types.d.ts",
"build:demo": "vite build",
"p-dist": "npm run build:demo && gh-pages -d dist "
},
"author": "qhy",
"license": "ISC",
"description": "基于react的二维码生成器",
"dependencies": {
"react": ">16.0.0"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"jsqr": "^1.4.0",
"prettier": "^2.3.2",
"react-dom": "^18.3.1",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.5.0",
"react": "^18.3.1"
},
"peerDependencies": {
"react": ">16.0.0"
}
}