-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
86 lines (86 loc) · 2.34 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
{
"name": "vue-avatar-cropper",
"description": "A simple and elegant component to crop and upload avatars",
"version": "6.1.1",
"main": "./dist/avatar-cropper.umd.js",
"module": "./dist/avatar-cropper.esm.js",
"unpkg": "./dist/avatar-cropper.umd.js",
"exports": {
"require": "./dist/avatar-cropper.umd.js",
"import": "./dist/avatar-cropper.esm.js"
},
"browser": {
"./sfc": "src/AvatarCropper.vue"
},
"files": [
"dist/avatar-cropper.umd.js",
"dist/avatar-cropper.esm.js",
"src/AvatarCropper.vue",
"src/index.js"
],
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev:build": "rollup -c -w --no-watch.clearScreen",
"dev:serve": "sirv ./dev -s -D -p 8629",
"dev": "run-p dev:build dev:serve",
"dev:net": "run-p dev:build 'dev:serve --host'",
"test:lint": "eslint .",
"pretest": "run-s build",
"test": "run-p --aggregate-output test:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/overtrue/vue-avatar-cropper.git"
},
"keywords": [
"vue",
"cropper",
"vue-cropper",
"vue-avatar",
"avatar-cropper",
"vue-avatar-cropper"
],
"peerDependencies": {
"vue": "^3.2.21"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-async-to-generator": "^7.16.8",
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^6.0.4",
"@vue/compiler-sfc": "^3.2.11",
"autoprefixer": "^10.3.4",
"eslint": "^8.1.0",
"eslint-plugin-vue": "^9.17.0",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"rollup": "^2.64.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sirv-cli": "^2.0.1",
"vue": "^3.2.21",
"vue-eslint-parser": "^9.0.3"
},
"dependencies": {
"cropperjs": "^1.5.12",
"mime": "^4.0.0"
},
"author": {
"name": "overtrue",
"email": "i@overtrue.me",
"url": "https://github.com/overtrue"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/overtrue/vue-avatar-cropper/issues"
},
"homepage": "https://github.com/overtrue/vue-avatar-cropper#readme"
}