-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "nuxt-openapi-typescript",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "Nuxt module wrapper for openapi-typescript",
"license": "MIT",
"repository": "https://github.com/blasdfaa/nuxt-openapi-typescript.git",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepare": "nuxt-module-build prepare",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"prepublishOnly": "npm run build",
"release": "bumpp && pnpm publish",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"publint": "publint"
},
"dependencies": {
"@nuxt/kit": "^3.10.1",
"openapi-fetch": "^0.8.2",
"openapi-typescript": "7.0.0-next.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.1",
"@nuxt/test-utils": "^3.11.0",
"@types/node": "^20.11.16",
"bumpp": "^9.3.0",
"eslint": "npm:[email protected]",
"eslint-ts-patch": "8.56.0-0",
"nuxt": "^3.10.1",
"publint": "^0.2.7",
"vitest": "^1.2.2"
}
}