-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "@fe-tools/vue-poster",
"version": "0.5.2",
"description": "vue component, easy create canvas poster",
"keywords": [
"vue",
"vue-plugin",
"vue-component",
"canvas"
],
"author": "Wizard67<wizard67.hjn@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"sideEffects": false,
"files": [
"src",
"lib",
"types"
],
"scripts": {
"prebuild": "rimraf lib types",
"start": "rollup -c -i src/index.ts -w",
"build": "rollup -c",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/fe-tools/vue-poster.git"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"dependencies": {
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.24.0",
"rollup-plugin-vue": "^5.0.1",
"typescript": "^3.7.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}