-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "vue-qrcode-image",
"version": "1.2.0",
"description": "A Vue component for QR code generation.",
"main": "./dist/vue-qrcode-image.cjs",
"module": "./dist/vue-qrcode-image.js",
"types": "./dist/src/vue-qrcode-image.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/vue-qrcode-image.d.ts",
"default": "./dist/vue-qrcode-image.js"
},
"require": {
"types": "./dist/src/vue-qrcode-image.d.ts",
"default": "./dist/vue-qrcode-image.cjs"
}
}
},
"scripts": {
"build": "vite build",
"test": "vitest --run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/vue-qrcode-image.git"
},
"keywords": [
"vue",
"qrcode",
"image",
"encoder"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/vue-qrcode-image/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/vue-qrcode-image#readme",
"dependencies": {
"@nuintun/qrcode": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"@vue/test-utils": "^2.4.5",
"happy-dom": "^13.8.6",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.4.0",
"vue": "^3.4.21"
}
}