This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/package.json

30 lines
866 B
JSON
Raw Normal View History

2022-12-19 23:18:14 +00:00
{
"name": "sitio",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild compilar.ts *.js --target=node18 --outdir=build-js --sourcemap && node --enable-source-maps --trace-uncaught build-js/compilar.js && pagefind --source build",
2023-09-09 13:30:11 +00:00
"build-bun": "bun build compilar.ts --target bun > build-js/bun.js && bun build-js/bun.js && pagefind --source build",
2023-07-17 19:42:03 +00:00
"check": "tsc",
"refresh-feeds": "node feeds.js refresh"
2022-12-19 23:18:14 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/commonmark": "^0.27.5",
"@types/node": "^18.11.18",
"esbuild": "^0.16.17",
2022-12-20 17:07:24 +00:00
"typescript": "^4.9.4"
2022-12-19 23:18:14 +00:00
},
"dependencies": {
"@nulo/html.js": "^0.0.8",
2023-04-16 18:58:25 +00:00
"commonmark": "^0.30.0",
"domutils": "^3.0.1",
"htmlparser2": "^8.0.2",
"pagefind": "^0.12.0"
2022-12-19 23:18:14 +00:00
}
}