-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "@nuxtjs/cloudinary",
"version": "4.0.0",
"description": "Cloudinary module for Nuxt",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"repository": "nuxt-modules/cloudinary",
"contributors": [
{
"name": "Jakub Andrzejewski <[email protected]>"
},
{
"name": "Maya Shavin <[email protected]>"
}
],
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"keywords": [
"nuxt",
"module",
"nuxt-cloudinary",
"cloudinary",
"images",
"videos",
"optimization",
"plugins"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"docs": "cd docs && pnpm run dev",
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "yarn run lint && yarn run test && yarn run prepack && changelogen --release --output=CHANGELOG.md && yarn publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"stackblitz": "cd .stackblitz && pnpm install && pnpm run dev"
},
"dependencies": {
"@cloudinary-util/url-loader": "^6.0.0",
"@cloudinary-util/types": "2.0.0-beta.1",
"@nuxt/kit": "^3.11.2",
"@unpic/vue": "^0.0.48",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.10",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.0",
"changelogen": "^0.5.5",
"eslint": "^9.0.0",
"nuxt": "^3.11.2",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "yarn stackblitz"
},
"packageManager": "[email protected]+sha512.9df87c16c98db27b4e051d787e67f2207ec47e809ccb07bf7b5ec4acdcd1613355839a38d0b900144923d6a7057700b74d2a0ccb1558beb241647a1206a9a7ab"
}