flecks/package.json
cha0s 66b4a95cf0 feat: require.context in bootstrap scripts
fix: test running
chore: task coloring
refactor: hooks
2024-02-14 06:34:29 -06:00

27 lines
1.0 KiB
JSON

{
"name": "@flecks/monorepo",
"version": "3.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cha0s/flecks.git"
},
"scripts": {
"build": "node build/tasks npm run -- build",
"dox": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus npx docusaurus",
"dox:build": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus npx docusaurus build && cd .. && rm -rf gh-pages/* && mv website/build/* gh-pages && rm -rf website/build",
"gh-pages": "cd gh-pages && git add . && git commit -m $(git -C ../website rev-parse HEAD) && git push origin gh-pages",
"lint": "node build/tasks npm run -- lint",
"publish": "node build/publish --provenance",
"test": "MOCHA_COLORS=1 node build/tasks npm run -- test",
"verify": "act -j test --matrix node-version:20.x"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@npmcli/arborist": "^7.3.1",
"chalk": "^4.1.2"
}
}