-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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-picture-cropper",
"version": "0.7.0",
"description": "A simple and easy-to-use picture cropping component for Vue 3.",
"author": "chengpeiquan <chengpeiquan@chengpeiquan.com>",
"homepage": "https://cropper.chengpeiquan.com",
"license": "MIT",
"type": "module",
"files": [
"lib"
],
"main": "./lib/index.min.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"dev": "pnpm -F docs dev",
"build": "run-s build:*",
"build:lib": "vite build",
"build:types": "tsx scripts/buildTypes",
"build:docs": "pnpm -F docs build",
"preview": "pnpm -F docs preview",
"lint": "eslint src",
"format": "prettier --write src",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chengpeiquan/vue-picture-cropper.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"picture cropper",
"image cropper",
"photo cropper",
"vue3 cropper",
"vue3 cropperjs"
],
"dependencies": {
"@bassist/utils": "^0.4.0",
"cropperjs": "^1.6.1"
},
"devDependencies": {
"@bassist/commit": "^0.1.0",
"@bassist/eslint": "^0.5.0",
"@bassist/tsconfig": "^0.1.1",
"@types/node": "^20.8.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@withtypes/fs-extra": "^0.1.1",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-banner": "^0.7.1",
"vue": "^3.2.13"
},
"peerDependencies": {
"vue": ">=3.2.13"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write src",
"eslint --fix src"
]
}
}