-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·104 lines (104 loc) · 2.73 KB
/
package.json
File metadata and controls
executable file
·104 lines (104 loc) · 2.73 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@nuxt/image",
"version": "2.0.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,
"type": "module",
"exports": {
".": "./dist/module.js",
"./runtime": "./dist/runtime/index.js",
"./runtime/providers/*": "./dist/runtime/providers/*.js"
},
"main": "./dist/module.js",
"typesVersions": {
"*": {
".": [
"./dist/module.d.ts"
],
"./runtime": [
"./dist/runtime/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:generate": "nuxt generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare docs",
"docs:build": "pnpm run --filter docs build",
"docs:dev": "pnpm run --filter docs dev",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "nuxt prepare playground && pnpm vitest run --coverage",
"test:types": "vue-tsc --noEmit",
"test:built:types": "nuxt typecheck playground && nuxt typecheck example"
},
"dependencies": {
"@nuxt/kit": "^4.4.2",
"consola": "^3.4.2",
"defu": "^6.1.7",
"h3": "^1.15.6",
"image-meta": "^0.2.2",
"knitwork": "^1.3.0",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"std-env": "^4.0.0",
"ufo": "^1.6.3"
},
"devDependencies": {
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.2",
"@nuxt/test-utils": "^4.0.2",
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"@unhead/vue": "^3.0.4",
"@vitest/coverage-v8": "^4.1.4",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"eslint": "10.2.0",
"happy-dom": "^20.9.0",
"installed-check": "^10.0.1",
"ipx": "^3.1.1",
"jiti": "2.6.1",
"knip": "^6.4.1",
"nitropack": "^2.13.3",
"nuxt": "^4.4.2",
"ofetch": "^1.5.1",
"pkg-pr-new": "^0.0.66",
"playwright-core": "^1.59.1",
"semver": "^7.7.4",
"tinyexec": "^1.1.1",
"tinyglobby": "^0.2.16",
"typescript": "6.0.2",
"unbuild": "^3.6.1",
"vitest": "^4.1.4",
"vue": "3.5.32",
"vue-tsc": "^3.2.6"
},
"optionalDependencies": {
"ipx": "^3.1.1"
},
"packageManager": "pnpm@10.33.0",
"resolutions": {
"@nuxt/image": "workspace:*",
"@nuxt/schema": "4.4.2",
"@types/node": "^24.12.2",
"vue": "3.5.32"
},
"engines": {
"node": ">=18.20.6"
}
}