forked from 987153776/vue-picture-cut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.37 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
84
85
86
87
88
{
"name": "leqee-vue-picture-cut",
"version": "2.0.17",
"description": "基于vue和typescript开发的一款图片剪裁处理工具。优点:原生、轻量、使用简单、功能全面、扩展性强。目前功能:缩放、翻折、旋转、边缘校验、矩形剪裁、任意(椭)圆剪裁。",
"main": "lib/vue-picture-cut.umd.min.js",
"directories": {
"test": "tests"
},
"keywords": [
"vue",
"canvas",
"JypeScript",
"TypeScript",
"剪裁",
"图像处理"
],
"author": "光年以外 <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/987153776/vue-picture-cut.git"
},
"bugs": {
"url": "https://github.com/987153776/vue-picture-cut/issues"
},
"homepage": "https://github.com/987153776/vue-picture-cut#readme",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name vue-picture-cut --dest lib src/lib/index.ts"
},
"dependencies": {
"vue-bus-ts": "^1.0.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-typescript": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-typescript": "^5.0.2",
"core-js": "^3.8.3",
"element-ui": "^2.15.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"typescript": "^3.9.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {}
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead",
"last 20 Chrome versions",
"last 10 Firefox versions",
"Safari >= 6",
"ie >= 9",
"not ie <= 8",
"Android >= 4.0",
"iOS >= 8"
]
}