-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "qrcode-with-logos",
"version": "1.1.1",
"description": "",
"main": "lib/qrcode-with-logos.common.js",
"types": "types/index.d.ts",
"module": "lib/qrcode-with-logos.esm.js",
"umd": "lib/qrcode-with-logos.min.js",
"jsdelivr": "lib/qrcode-with-logos.min.js",
"unpkg": "lib/qrcode-with-logos.min.js",
"className": "QrCodeWithLogo",
"scripts": {
"start": "parcel ./index.html",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"build:type": "tsc --module commonjs",
"build": "npm run build:min && npm run build:rollup",
"build:rollup": "rollup -c",
"build:min": "webpack --config ./webpack.config.js"
},
"keywords": [
"qr-code",
"logo",
"image",
"qrCode",
"size"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zxpsuper/QRcode-with-logo.git"
},
"author": "suporka",
"license": "MIT",
"bugs": {
"url": "https://github.com/zxpsuper/QRcode-with-logo/issues"
},
"homepage": "https://github.com/zxpsuper/QRcode-with-logo#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"element-plus": "^2.7.5",
"parcel-bundler": "^1.12.4",
"rollup": "^2.33.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-loader": "^8.0.12",
"tslib": "^2.0.3",
"typescript": "^5.5.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vitepress": "^1.2.3",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"qrcode": "^1.4.4"
}
}