-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@slidev/types",
"version": "0.48.4",
"description": "Shared types declarations for Slidev",
"author": "antfu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://sli.dev",
"repository": {
"type": "git",
"url": "https://github.com/slidevjs/slidev"
},
"bugs": "https://github.com/slidevjs/slidev/issues",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "index.d.ts",
"files": [
"client.d.ts",
"dist",
"index.d.ts"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup src/index.ts",
"dev": "nr build --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@antfu/utils": "^0.7.7",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"katex": "^0.16.9",
"mermaid": "^10.9.0",
"monaco-editor": "^0.47.0",
"shiki": "^1.1.7",
"unocss": "^0.58.5",
"unplugin-icons": "^0.18.5",
"unplugin-vue-markdown": "^0.26.0",
"vite-plugin-remote-assets": "^0.4.1",
"vite-plugin-vue-server-ref": "^0.4.2",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
}
}