forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1006 Bytes
/
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
{
"name": "@nutui/vite-plugins",
"version": "1.0.0",
"private": "true",
"type": "module",
"description": "",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./markdown": {
"import": "./dist/markdown.js",
"require": "./dist/markdown.cjs",
"types": "./dist/markdown.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "pnpm build",
"dev": "tsup --watch",
"build": "tsup"
},
"author": "jdf2e",
"license": "MIT",
"dependencies": {
"fs-extra": "^11.2.0",
"highlight.js": "^11.9.0",
"lzutf8": "^0.6.3",
"markdown-it-container": "^4.0.0",
"unplugin-vue-markdown": "^0.26.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/markdown-it-container": "^2.0.9",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}