mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-12 05:51:44 +08:00
774ad784d8
Move test files from tests/ directory to colocate with source code, convert from .mjs to .ts using tsx runner, add workspaces and npm cache to CI workflow.
16 lines
294 B
JSON
16 lines
294 B
JSON
{
|
|
"name": "baoyu-skills",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"test": "node --import tsx --test",
|
|
"test:coverage": "node --import tsx --experimental-test-coverage --test"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.20.5"
|
|
}
|
|
}
|