nuxt-modern-cropper 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -3
- package/dist/module.json +1 -1
- package/dist/module.mjs +0 -1
- package/package.json +19 -11
package/README.md
CHANGED
|
@@ -10,11 +10,24 @@ Power-packed wrapper over cropperjs@next.
|
|
|
10
10
|
This package is just a module wrapper over [vue-modern-cropper](https://github.com/NamesMT/vue-modern-cropper), for more information check it's repo.
|
|
11
11
|
<!-- - [📖 Documentation](https://example.com) -->
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Table of Contents
|
|
14
|
+
<details>
|
|
15
|
+
|
|
16
|
+
<summary>TOC</summary>
|
|
17
|
+
|
|
18
|
+
- [Nuxt Modern Cropper](#nuxt-modern-cropper)
|
|
19
|
+
- [Table of Contents](#table-of-contents)
|
|
20
|
+
- [Usage](#usage)
|
|
21
|
+
- [Install \& Setup](#install--setup)
|
|
22
|
+
- [Contribution](#contribution)
|
|
23
|
+
|
|
24
|
+
</details>
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
14
27
|
|
|
15
|
-
Install
|
|
28
|
+
### Install & Setup
|
|
16
29
|
```bash
|
|
17
|
-
pnpm add -D
|
|
30
|
+
pnpm add -D nuxt-modern-cropper vue-modern-cropper
|
|
18
31
|
```
|
|
19
32
|
|
|
20
33
|
Add `nuxt-modern-cropper` to your Nuxt config file:
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-modern-cropper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Power-packed wrapper over cropperjs@next",
|
|
5
5
|
"repository": "namesmt/nuxt-modern-cropper",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,21 +29,29 @@
|
|
|
29
29
|
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nuxt/kit": "^3.12.
|
|
33
|
-
"vue-modern-cropper": "0.x"
|
|
32
|
+
"@nuxt/kit": "^3.12.4"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
35
|
"@nuxt/devtools": "^1.3.9",
|
|
37
|
-
"@nuxt/eslint-config": "^0.
|
|
36
|
+
"@nuxt/eslint-config": "^0.5.0",
|
|
38
37
|
"@nuxt/module-builder": "^0.8.1",
|
|
39
|
-
"@nuxt/schema": "^3.12.
|
|
40
|
-
"@nuxt/test-utils": "^3.
|
|
41
|
-
"@types/node": "^20.14.
|
|
38
|
+
"@nuxt/schema": "^3.12.4",
|
|
39
|
+
"@nuxt/test-utils": "^3.14.0",
|
|
40
|
+
"@types/node": "^20.14.14",
|
|
42
41
|
"changelogen": "^0.5.5",
|
|
43
|
-
"eslint": "^9.
|
|
44
|
-
"nuxt": "^3.12.
|
|
42
|
+
"eslint": "^9.8.0",
|
|
43
|
+
"nuxt": "^3.12.4",
|
|
45
44
|
"typescript": "latest",
|
|
46
|
-
"vitest": "^2.0.
|
|
47
|
-
"vue-tsc": "^2.0.
|
|
45
|
+
"vitest": "^2.0.5",
|
|
46
|
+
"vue-tsc": "^2.0.29"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"@types/node": "^14.18.0 || >=16.10.0",
|
|
50
|
+
"vue-modern-cropper": "0.x"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"vue-modern-cropper": {
|
|
54
|
+
"optional": false
|
|
55
|
+
}
|
|
48
56
|
}
|
|
49
57
|
}
|