51 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
{
"name": "@slidev/parser",
"version": "0.50.0",
"description": "Markdown parser for Slidev",
"author": "antfu <anthonyfu117@hotmail.com>",
"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.mts",
"import": "./dist/index.mjs"
},
"./core": {
"types": "./dist/core.d.mts",
"import": "./dist/core.mjs"
},
"./fs": {
"types": "./dist/fs.d.mts",
"import": "./dist/fs.mjs"
},
"./utils": {
"types": "./dist/utils.d.mts",
"import": "./dist/utils.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@antfu/utils": "^0.7.10",
"yaml": "^2.6.1",
"@slidev/types": "0.50.0"
},
"scripts": {
"build": "rimraf dist && tsup src/index.ts src/core.ts src/fs.ts src/utils.ts",
"dev": "nr build --watch"
}
}