-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "vue-next-clipboard",
"author": "Tecvan <[email protected]> (https://www.yuque.com/tecvan/deepinfe)",
"version": "1.0.0-alpha.1",
"description": "Clipboard utilitie for vue-next.",
"keywords": [
"vue-next",
"clipboard",
"vue"
],
"homepage": "https://github.com/VanMess/vue-next-clipboard",
"repository": {
"type": "git",
"url": "git+https://github.com/VanMess/vue-next-clipboard.git"
},
"bugs": {
"url": "https://github.com/VanMess/vue-next-clipboard/issues"
},
"main": "dist/vue-next-clipboard.umd.js",
"browser": "dist/vue-next-clipboard.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint --ext .ts src/**",
"format": "prettier --write --parser typescript \"src/**/*.ts\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"dependencies": {
"clipboard-polyfill": "^3.0.0",
"vue": "^3.0.0-beta.20"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/parser": "^3.8.0",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.6.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.9.7"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"vue": "^3.0.0-beta.20"
},
"private": false
}