-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.01 KB
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
{
"name": "@nuxtjs/cloudinary",
"version": "4.1.0",
"description": "Cloudinary module for Nuxt",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs",
"default": "./dist/module.mjs"
}
},
"repository": "nuxt-modules/cloudinary",
"contributors": [
{
"name": "Jakub Andrzejewski <jakub.andrzejewski.dev@gmail.com>"
},
{
"name": "Maya Shavin <dpnminh@gmail.com>"
}
],
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"keywords": [
"nuxt",
"module",
"nuxt-cloudinary",
"cloudinary",
"images",
"videos",
"optimization",
"plugins"
],
"scripts": {
"prepack": "nuxt-module-build 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": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release --output=CHANGELOG.md && pnpm 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.3.1",
"@cloudinary-util/types": "2.0.0-beta.3",
"@cloudinary-util/util": "^4.3.0",
"@nuxt/kit": "^3.11.2 || ^4.0.0",
"@unhead/vue": "^3.4.1",
"@unpic/vue": "^1.0.0",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.0.0",
"@nuxt/module-builder": "^1.0.3",
"@nuxt/schema": "^4.0.0",
"@nuxt/test-utils": "^4.3.2",
"changelogen": "^0.5.5",
"eslint": "^10.4.0",
"nuxt": "^4.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0",
"vue-tsc": "^3.3.11"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "pnpm stackblitz"
},
"packageManager": "pnpm@9.15.9"
}