md-report/packages/parser/package.json

26 lines
626 B
JSON
Raw Normal View History

2022-04-12 22:09:19 +08:00
{
"name": "@md-report/parser",
"version": "0.0.1",
"description": "Markdown parser for md-report.",
"license": "MIT",
"author": "syy11cn<syy11cn@outlook.com>",
2022-04-16 17:15:26 +08:00
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
2022-04-14 00:26:36 +08:00
"exports": {
".": {
2022-04-16 00:18:05 +08:00
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
2022-04-14 00:26:36 +08:00
}
},
2022-04-12 22:09:19 +08:00
"scripts": {
2022-04-16 00:18:05 +08:00
"build": "rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting --no-shims",
"dev": "nr build --watch",
"prepublishOnly": "nr build"
2022-04-13 10:24:39 +08:00
},
"dependencies": {
"js-yaml": "^4.1.0"
2022-04-12 22:09:19 +08:00
}
}