forked from wobsoriano/nuxt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
{
"name": "nuxt-proxy",
"type": "module",
"version": "0.2.0",
"packageManager": "[email protected]",
"description": "Http-proxy middleware for Nuxt 3.",
"keywords": [
"proxy",
"nuxt",
"vue",
"http",
"connect",
"h3"
],
"license": "MIT",
"author": "Robert Soriano <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/wobsoriano/nuxt-proxy.git"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/module.d.ts"
},
"./middleware": {
"import": "./dist/runtime/middleware.mjs",
"types": "./dist/runtime/middleware.d.ts"
}
},
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"prepublishOnly": "nr build",
"build": "nuxt-module-build",
"play": "nr build && nuxi dev playground",
"build:playground": "nuxi build playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp --commit --push --tag && npm publish",
"prepare": "nr build && nuxi prepare playground"
},
"dependencies": {
"@nuxt/kit": "3.0.0-rc.4",
"dedent": "^0.7.0",
"defu": "^6.0.0",
"h3": "^0.7.9",
"http-proxy-middleware": "^3.0.0-beta.0",
"ohash": "^0.1.0",
"pathe": "^0.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.1",
"@antfu/ni": "^0.16.2",
"@nuxt/module-builder": "latest",
"@types/dedent": "^0.7.0",
"bumpp": "^7.1.1",
"eslint": "^8.14.0",
"nuxt": "^3.0.0-rc.3",
"pnpm": "^7.2.1"
},
"eslintConfig": {
"extends": "@antfu"
}
}