forked from nuxt/image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.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
{
"name": "@nuxt/image",
"version": "1.0.0",
"description": "Nuxt Image Module",
"repository": "nuxt/image",
"license": "MIT",
"sideEffects": false,
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs:build": "cd docs && nuxt generate",
"docs:dev": "pnpm nuxt dev docs",
"lint": "eslint --ext .ts --ext .vue .",
"prepack": "pnpm build",
"release": "pnpm test && standard-version && git push --follow-tags && npm publish",
"test": "pnpm lint"
},
"dependencies": {
"@nuxt/kit": "^3.1.1",
"consola": "^2.15.3",
"defu": "^6.1.2",
"h3": "^1.1.0",
"image-meta": "^0.1.1",
"node-fetch-native": "^1.0.1",
"ohash": "^1.0.0",
"pathe": "^1.1.0",
"ufo": "^1.0.1"
},
"devDependencies": {
"@nuxt/module-builder": "0.2.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18.11.18",
"eslint": "8.33.0",
"jiti": "1.16.2",
"nuxt": "^3.1.1",
"standard-version": "latest",
"typescript": "4.9.4"
},
"optionalDependencies": {
"ipx": "1.0.0-2"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}