forked from diadal/vue3-qr-code-styling
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
83 lines (83 loc) · 2.1 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
81
82
83
{
"name": "qrcode-vue3",
"private": false,
"version": "1.7.1",
"type": "module",
"description": "Add a style and an image to your QR code Vue3",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "src/index.d.ts",
"files": [
"src",
"lib",
"dist"
],
"dependencies": {
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/compiler-sfc": "*",
"canvas": "^2.11.2",
"clean-webpack-plugin": "^4.0.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom-fifteen": "^1.0.2",
"path": "^0.12.7",
"prettier": "^2.8.8",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vite": "^4.5.3",
"vite-plugin-dts": "^2.3.0",
"vue": "^3.3.2",
"vue-loader": "^17.4.2",
"vue-tsc": "^2.1.6",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.10.0"
},
"scripts": {
"test": "jest --passWithNoTests",
"dev:vite": "vite",
"build": "rm dist -rf && vue-tsc && vite build",
"preview:vite": "vite preview",
"buildAndPublish": "rm dist -rf && vue-tsc && vite build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scholtz/qrcode-vue3.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"js",
"qrjs",
"qrstyling",
"styling",
"qrbranding",
"branding",
"qrimage",
"image",
"qrlogo",
"logo",
"design"
],
"author": "Ludovit Scholtz <[email protected]>, Diadal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scholtz/qrcode-vue3/issues"
},
"homepage": "https://github.com/scholtz/qrcode-vue3"
}