-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.5 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
{
"name": "vitepress-mermaid-preview",
"description": "Mermaid preview for vitepress",
"version": "0.2.1",
"type": "module",
"packageManager": "pnpm@10.13.1",
"author": "flingyp",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./component": {
"types": "./dist/component.d.ts",
"import": "./dist/component.js",
"require": "./dist/component.cjs"
},
"./dist/index.css": "./dist/vitepress-mermaid-preview.css"
},
"types": "./dist/index.d.ts",
"keywords": [
"typescript",
"libarary",
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/flingyp"
},
"devDependencies": {
"@flypeng/eslint-config": "^2.0.5",
"@microsoft/api-extractor": "^7.52.8",
"@types/markdown-it": "^14.1.2",
"@vue/language-core": "^3.0.1",
"cross-env": "^7.0.3",
"nodemon": "^3.1.10",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"unplugin-dts": "1.0.0-beta.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@flypeng/tool": "^5.7.2",
"@vitejs/plugin-vue": "^6.0.0",
"@zumer/snapdom": "^1.9.5",
"markdown-it": "^14.1.0",
"mermaid": "^11.9.0",
"sass": "^1.89.2",
"vite": "^7.0.5",
"vue": "^3.5.17",
"vue-tsc": "^3.0.1"
}
}