21 lines
594 B
JSON
21 lines
594 B
JSON
{
|
|
"name": "@devflow/run-engine",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --clean && tsc -p tsconfig.build.json",
|
|
"typecheck": "tsc -p ../../tsconfig.typecheck.json --noEmit",
|
|
"test": "cd ../.. && vitest run --project packages/run-engine"
|
|
},
|
|
"dependencies": {
|
|
"@devflow/core": "workspace:*",
|
|
"@devflow/db": "workspace:*",
|
|
"@devflow/session": "workspace:*",
|
|
"drizzle-orm": "0.45.2"
|
|
}
|
|
}
|