3eba156b6b
- Define Signal, SenseConfig, ReflexConfig, WorkflowConfig, NerveConfig types - Implement Result<T,E> with ok()/err() helpers - Implement parseNerveConfig() with full YAML validation - 14 unit tests covering normal and error paths - pnpm run check passes with 0 errors Closes #2 小橘 <xiaoju@shazhou.work>
19 lines
317 B
JSON
19 lines
317 B
JSON
{
|
|
"name": "@uncaged/nerve-core",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"yaml": "^2.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|