forked from nuxt/image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 2.1 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
{
"name": "@nuxt/image",
"version": "1.1.0",
"description": "Nuxt Image Module",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/image.git"
},
"homepage": "https://image.nuxt.com",
"license": "MIT",
"sideEffects": false,
"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",
"docs:build": "cd docs && nuxt generate",
"docs:dev": "pnpm nuxt dev docs",
"lint": "eslint --ext .ts --ext .vue .",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "nuxi prepare playground && pnpm vitest run",
"test:types": "vue-tsc --noEmit && nuxi typecheck playground && nuxi typecheck example"
},
"dependencies": {
"@nuxt/kit": "^3.8.2",
"consola": "^3.2.3",
"defu": "^6.1.3",
"h3": "^1.9.0",
"image-meta": "^0.2.0",
"node-fetch-native": "^1.4.1",
"ohash": "^1.1.3",
"pathe": "^1.1.1",
"std-env": "^3.6.0",
"ufo": "^1.3.2"
},
"devDependencies": {
"@nuxt/image": "link:",
"@nuxt/module-builder": "0.5.4",
"@nuxt/test-utils": "^3.9.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.10.5",
"@vitest/coverage-v8": "^1.1.0",
"@vue/test-utils": "^2.4.3",
"changelogen": "^0.5.5",
"eslint": "8.56.0",
"globby": "^14.0.0",
"happy-dom": "^12.10.3",
"ipx": "^2.0.2",
"jiti": "1.21.0",
"nuxt": "^3.8.2",
"playwright-core": "^1.40.1",
"typescript": "5.3.3",
"vitest": "^1.1.0",
"vitest-environment-nuxt": "^1.0.0",
"vue-tsc": "^1.8.25"
},
"optionalDependencies": {
"ipx": "^2.0.2"
},
"packageManager": "[email protected]",
"resolutions": {
"@nuxt/schema": "3.8.2",
"@nuxt/image-edge": "link:.",
"@nuxt/image": "link:."
},
"engines": {
"node": "^14.16.0 || >=16.11.0"
}
}