-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.61 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.61 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
{
"name": "@privyid/nhp",
"description": "Nuxt HTTP Proxy Module",
"version": "2.0.0-alpha.1",
"packageManager": "yarn@4.12.0",
"repository": {
"type": "git",
"url": "https://github.com/privy-open-source/nhp.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
},
"./core": {
"import": "./dist/core.mjs",
"require": "./dist/core.cjs",
"types": "./dist/core.d.ts"
}
},
"typesVersions": {
"*": {
"core": [
"./dist/core.d.ts"
]
}
},
"bin": "./bin/nhp.js",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"template",
"bin"
],
"scripts": {
"prepack": "yarn build && pinst --disable",
"dev": "nuxi dev playground",
"build": "nuxt-module-build build",
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"postinstall": "husky install",
"postpack": "pinst --enable"
},
"lint-staged": {
"*.(js|ts|vue)": [
"eslint --fix"
]
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"consola": "^3.0.0",
"fs-extra": "^11.2.0",
"h3": "^1.6.0",
"httpxy": "^0.1.5",
"lodash-es": "^4.17.21",
"meow": "^13.2.0",
"ofetch": "^1.1.1",
"openapi-types": "^12.1.3",
"type-fest": "^4.1.0",
"ufo": "^1.5.4",
"unconfig": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.17.4",
"@privyid/eslint-config-persona": "1.2.0",
"@privyid/nuapi": "1.0.0",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.1",
"eslint-config-standard-with-typescript": "35.0.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.33.0",
"husky": "9.1.7",
"lint-staged": "15.5.2",
"nuxt": "3.17.4",
"pinst": "3.0.0",
"typescript": "5.8.3"
},
"publishConfig": {
"access": "public"
}
}