forked from manuelodelain/image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.87 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
{
"name": "@nuxt/image",
"version": "0.4.1",
"description": "Nuxt Image Module",
"repository": "nuxt/image",
"license": "MIT",
"sideEffects": false,
"main": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime",
"dev": "yarn nuxt playground",
"docs:build": "cd docs && nuxt generate",
"docs:dev": "yarn nuxt dev docs",
"lint": "eslint --ext .ts --ext .vue .",
"prepublishOnly": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "true",
"test2": "yarn lint && yarn test:unit && yarn test:e2e",
"test:e2e": "jest test/e2e --forceExit",
"test:unit": "jest test/unit --forceExit"
},
"dependencies": {
"allowlist": "^0.1.1",
"consola": "^2.15.3",
"defu": "^3.2.2",
"fs-extra": "^9.1.0",
"hasha": "^5.2.2",
"image-meta": "^0.0.1",
"ipx": "^0.6.0",
"is-https": "^3.0.2",
"node-fetch": "^2.6.1",
"requrl": "^3.0.2",
"ufo": "^0.6.6",
"upath": "^2.0.1"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@cyrilf/vue-dat-gui": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@vue/test-utils": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"jest": "latest",
"jsdom": "latest",
"jsdom-global": "latest",
"mkdist": "latest",
"nuxt-edge": "^2.15.0-26889155.dd0eea40",
"playwright": "latest",
"siroc": "latest",
"standard-version": "latest",
"ts-loader": "latest",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
}
}