-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·98 lines (98 loc) · 2.6 KB
/
package.json
File metadata and controls
executable file
·98 lines (98 loc) · 2.6 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
{
"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.5",
"consola": "^3.4.2",
"defu": "^6.1.7",
"h3": "^1.15.11",
"image-meta": "^0.2.2",
"knitwork": "^1.3.0",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"std-env": "^4.1.0",
"ufo": "^1.6.4"
},
"devDependencies": {
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.5",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "^24.12.4",
"@types/semver": "^7.7.1",
"@unhead/vue": "^2.1.15",
"@vitest/coverage-v8": "^4.1.6",
"@vue/test-utils": "^2.4.10",
"changelogen": "^0.6.2",
"eslint": "10.3.0",
"happy-dom": "^20.9.0",
"installed-check": "^10.0.1",
"ipx": "^3.1.1",
"jiti": "2.7.0",
"knip": "^6.12.2",
"nitropack": "^2.13.4",
"nuxt": "^4.4.5",
"ofetch": "^1.5.1",
"pkg-pr-new": "^0.0.71",
"playwright-core": "^1.60.0",
"semver": "^7.8.0",
"tinyexec": "^1.1.2",
"tinyglobby": "^0.2.16",
"typescript": "6.0.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.6",
"vue": "3.5.34",
"vue-tsc": "^3.2.8"
},
"optionalDependencies": {
"ipx": "^3.1.1"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=18.20.6"
}
}