-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "vue3-photo-preview",
"version": "0.3.0",
"description": "一个 vue3 的图片预览组件",
"main": "dist/vue3-photo-preview.umd.js",
"module": "dist/vue3-photo-preview.esm.js",
"esnext": "dist/vue3-photo-preview.esm.js",
"types": "dist/types/index.d.ts",
"author": "wangjp",
"license": "MIT",
"repository": "https://github.com/NameWjp/vue3-photo-preview.git",
"homepage": "https://github.com/NameWjp/vue3-photo-preview#readme",
"bugs": "https://github.com/NameWjp/vue3-photo-preview/issues",
"keywords": [
"vue3",
"photo-preview",
"vue3-photo-preview"
],
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"build": "npm run clean && tsc --module commonjs && rollup -c rollup.config.ts",
"dev": "rollup -c rollup.config.ts -w",
"clean": "rimraf ./dist",
"deploy": "deploy.sh",
"release": "npm run build && release.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "FORCE_COLOR=1 node scripts/verify-commit.js"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,vue}": "eslint"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"devDependencies": {
"@babel/types": "^7.16.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/lodash-es": "^4.17.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vue/compiler-sfc": "^3.2.4",
"autoprefixer": "^10.3.1",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-plugin-vue": "7.16.0",
"husky": "4.2.3",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0-beta.10",
"sass": "^1.38.0",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"files": [
"dist"
]
}