-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "@lizychy0329/we-cropper",
"type": "module",
"version": "1.2.1",
"packageManager": "[email protected]",
"description": "A wechat style image cropper wrapper with vue-advanced-cropper",
"author": "@lizychy0329 <[email protected]>",
"homepage": "https://github.com/lizyChy0329/we-cropper",
"repository": {
"type": "git",
"url": "git+https://github.com/lizyChy0329/we-cropper.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "vite --force",
"build:docs": "vite build --mode docs",
"build:lib": "vite build --mode lib",
"watch:lib": "vite build -w --mode lib",
"preview": "vite preview --mode docs",
"release": "bumpp",
"lint": "eslint ."
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.1",
"@bimdata/vite-plugin-libcss": "^0.0.1",
"@iconify-json/carbon": "^1.2.1",
"@types/node": "^22.3.0",
"@unocss/reset": "^0.62.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^10.11.1",
"bumpp": "^9.5.2",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.9",
"shiki": "^1.13.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unocss": "^0.62.1",
"unplugin-icons": "^0.19.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-libcss": "^1.1.1",
"vue": "^3.4.37",
"vue-advanced-cropper": "^2.8.9",
"vue-tsc": "^2.0.29"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}