-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "@slidev/parser",
"version": "0.48.4",
"description": "Markdown parser 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",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.mjs",
"require": "./dist/core.js"
},
"./fs": {
"types": "./fs.d.ts",
"import": "./dist/fs.mjs",
"require": "./dist/fs.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rimraf dist && tsup src/index.ts src/core.ts src/fs.ts",
"dev": "nr build --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@slidev/types": "workspace:*",
"js-yaml": "^4.1.0"
}
}