-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vitepress-openapi",
"type": "module",
"version": "0.0.3-alpha.48",
"packageManager": "[email protected]",
"homepage": "https://vitepress-openapi.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/enzonotario/vitepress-openapi.git"
},
"author": "Enzo Notario <[email protected]>",
"license": "MIT",
"keywords": [
"vitepress",
"vitepress-theme",
"openapi"
],
"exports": {
".": {
"import": "./dist/vitepress-openapi.es.js",
"require": "./dist/vitepress-openapi.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/vitepress-openapi.es.js",
"module": "./dist/vitepress-openapi.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && vite build",
"build-watch": "vite build --watch",
"dev": "VITE_DEBUG=1 vitepress dev dev",
"prepublishOnly": "pnpm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "npm run build && vitepress build docs",
"test": "vitest",
"test:run": "vitest --run"
},
"peerDependencies": {
"vitepress": ">=1.0.0",
"vue": "^3.0.0"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.411.0",
"radix-vue": "^1.9.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@amoutonbrady/lz-string": "^0.1.0",
"@antfu/eslint-config": "^2.27.1",
"@sindresorhus/slugify": "^2.2.1",
"@trojs/openapi-dereference": "^0.2.3",
"@types/node": "^22.5.1",
"@vitejs/plugin-vue": "^5.1.3",
"allof-merge": "^0.6.6",
"autoprefixer": "^10.4.20",
"destr": "^2.0.3",
"eslint": "^9.9.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-format": "^0.1.2",
"globals": "^15.9.0",
"json-editor-vue": "^0.16.0",
"markdown-it": "^14.1.0",
"postcss": "^8.4.42",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"scule": "^1.3.0",
"shiki": "^1.16.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitepress": "^1.4.1",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vue-i18n": "^9.13.1",
"vue-json-pretty": "^2.4.0",
"vue-tsc": "^2.1.4",
"xml-formatter": "^3.6.3"
},
"resolutions": {
"@typescript-eslint/utils": "^8.2.0"
}
}