- package.json: file: link to pulse repo (not workspace:*) - .gitignore: node_modules + .pulse/ + dist/ - ping-pong workflow + test: validates engine can import pulse & run workflows - bun install: 9 packages via hardlink Ref: pulse#3
17 lines
314 B
JSON
17 lines
314 B
JSON
{
|
|
"name": "@upulse/engine",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --noEmit",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/pulse": "file:../../repos/pulse/packages/pulse"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.0",
|
|
"@types/bun": "^1.2.0"
|
|
}
|
|
}
|