-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2 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
{
"name": "@xcan-cloud/open-api-designer",
"version": "2.1.0",
"description": "OpenAPI Designer - Visual OpenAPI design tool",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/xcancloud/OpenAPIDesigner.git"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/index.css"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.ts && tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build:lib",
"deploy": "npm run build:lib && npm publish"
},
"dependencies": {
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.3",
"@radix-ui/react-scroll-area": "1.2.3",
"clsx": "2.1.1",
"js-yaml": "^4.1.1",
"katex": "^0.16.22",
"lucide-react": "0.487.0",
"marked": "^15.0.7",
"marked-gfm-heading-id": "^4.1.0",
"mermaid": "^11.4.1",
"shiki": "^3.2.2",
"sonner": "2.0.3",
"tailwind-merge": "3.2.0"
},
"devDependencies": {
"@tailwindcss/vite": "4.1.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "4.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router": "7.13.0",
"tailwindcss": "4.1.12",
"tw-animate-css": "1.3.8",
"typescript": "~5.7.0",
"vite": "6.3.5"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"pnpm": {
"overrides": {
"vite": "6.3.5"
}
}
}