* initial * improvements * finished implementation * transform links to index.html.md links * fix for resources
51 lines
933 B
JSON
51 lines
933 B
JSON
{
|
|
"name": "build-scripts",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"module": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn clean && tsc",
|
|
"clean": "rimraf dist",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"docs-utils": "*",
|
|
"fdir": "^6.4.3",
|
|
"slugify": "^1.6.6",
|
|
"tags": "*",
|
|
"yaml": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.20",
|
|
"rimraf": "^5.0.5",
|
|
"tsconfig": "*",
|
|
"types": "*",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"peerDependencies": {
|
|
"docs-utils": "*"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
}
|
|
}
|