返回 slidev
package.json
根目录 / packages / parser / package.json
1 {
2 "name": "@slidev/parser",
3 "version": "52.19.0",
4 "description": "Markdown parser for Slidev",
5 "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6 "license": "MIT",
7 "funding": "https://github.com/sponsors/antfu",
8 "homepage": "https://sli.dev",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/slidevjs/slidev"
12 },
13 "bugs": "https://github.com/slidevjs/slidev/issues",
14 "exports": {
15 ".": "./dist/index.mjs",
16 "./core": "./dist/core.mjs",
17 "./fs": "./dist/fs.mjs",
18 "./utils": "./dist/utils.mjs",
19 "./package.json": "./package.json"
20 },
21 "main": "./dist/index.mjs",
22 "module": "./dist/index.mjs",
23 "types": "./dist/index.d.mts",
24 "files": [
25 "*.d.ts",
26 "dist"
27 ],
28 "engines": {
29 "node": ">=20.12.0"
30 },
31 "scripts": {
32 "build": "tsdown",
33 "dev": "nr build --watch",
34 "prepublishOnly": "npm run build"
35 },
36 "dependencies": {
37 "@antfu/utils": "catalog:frontend",
38 "@slidev/types": "workspace:*",
39 "pathe": "catalog:prod",
40 "yaml": "catalog:prod"
41 },
42 "devDependencies": {
43 "tsdown-stale-guard": "catalog:dev"
44 }
45 }
46
46 lines JSON