flecks/package.json

27 lines
1.1 KiB
JSON
Raw Normal View History

2022-02-25 04:58:08 -06:00
{
"name": "@flecks/monorepo",
2024-01-21 06:56:53 -06:00
"version": "3.0.0",
2024-01-10 04:36:02 -06:00
"private": true,
2022-02-28 11:59:16 -06:00
"repository": {
2022-03-07 07:02:31 -06:00
"type": "git",
2024-01-23 21:18:09 -06:00
"url": "git+https://github.com/cha0s/flecks.git"
2022-02-28 11:59:16 -06:00
},
2022-02-25 04:58:08 -06:00
"scripts": {
2024-02-14 08:10:43 -06:00
"build": "FORCE_COLOR=1 node build/tasks npm run -- build",
2024-02-14 20:16:31 -06:00
"ci": "act -W .github/workflows/ci.yml --matrix node-version:20.x",
2024-02-13 02:38:46 -06:00
"dox": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus npx docusaurus",
2024-02-13 04:30:46 -06:00
"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",
2024-02-13 04:43:51 -06:00
"gh-pages": "cd gh-pages && git add . && git commit -m $(git -C ../website rev-parse HEAD) && git push origin gh-pages",
2024-02-14 08:10:43 -06:00
"lint": "FORCE_COLOR=1 node build/tasks npm run -- lint",
2024-02-09 01:11:27 -06:00
"publish": "node build/publish --provenance",
2024-02-14 20:16:31 -06:00
"test": "FORCE_COLOR=1 MOCHA_COLORS=1 node build/tasks npm run -- test"
2022-02-25 04:58:08 -06:00
},
2024-02-03 20:31:35 -06:00
"workspaces": [
"packages/*"
2024-02-09 01:11:27 -06:00
],
"devDependencies": {
"@npmcli/arborist": "^7.3.1",
"chalk": "^4.1.2"
2024-02-09 01:11:27 -06:00
}
2022-02-25 04:58:08 -06:00
}