-
Notifications
You must be signed in to change notification settings - Fork 270
/
package.json
executable file
·90 lines (90 loc) · 2.41 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
87
88
89
90
{
"name": "@nuxt/image",
"version": "1.8.1",
"description": "Nuxt Image Module",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/image.git"
},
"homepage": "https://image.nuxt.com",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare docs",
"docs:build": "cd docs && nuxt generate",
"docs:dev": "pnpm nuxt dev docs",
"lint": "eslint .",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "nuxi prepare playground && pnpm vitest run --coverage",
"test:types": "vue-tsc --noEmit && nuxi typecheck playground && nuxi typecheck example"
},
"dependencies": {
"@nuxt/kit": "^3.14.159",
"consola": "^3.2.3",
"defu": "^6.1.4",
"h3": "^1.13.0",
"image-meta": "^0.2.1",
"node-fetch-native": "^1.6.4",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"std-env": "^3.8.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "0.6.1",
"@nuxt/image": "link:",
"@nuxt/module-builder": "0.8.4",
"@nuxt/test-utils": "^3.14.4",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.1.4",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.5.7",
"eslint": "9.14.0",
"globby": "^14.0.2",
"happy-dom": "^15.11.0",
"ipx": "^2.1.0",
"jiti": "2.4.0",
"nuxt": "^3.14.159",
"ofetch": "^1.4.1",
"playwright-core": "^1.48.2",
"semver": "^7.6.3",
"tinyexec": "^0.3.1",
"typescript": "5.6.3",
"vitest": "^2.1.4",
"vitest-environment-nuxt": "^1.0.1",
"vue": "3.5.12",
"vue-tsc": "^2.1.10"
},
"optionalDependencies": {
"ipx": "^2.1.0"
},
"packageManager": "[email protected]",
"resolutions": {
"@nuxt/image": "link:.",
"@nuxt/schema": "3.14.159",
"@nuxt/ui": "2.19.2",
"vue": "3.5.12"
},
"engines": {
"node": "^14.16.0 || >=16.11.0"
}
}