27 lines
674 B
JSON
27 lines
674 B
JSON
{
|
|
"name": "plane-runner-host",
|
|
"version": "1.0.0",
|
|
"description": "Plane Runner Host for executing isolated JS/TS scripts",
|
|
"main": "dist/index.mjs",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.mjs",
|
|
"dev": "PORT=3300 tsdown --watch --onSuccess \"node --env-file=.env .\""
|
|
},
|
|
"dependencies": {
|
|
"@makeplane/plane-node-sdk": "0.2.4",
|
|
"acorn": "^8.15.0",
|
|
"acorn-walk": "^8.3.4",
|
|
"axios": "catalog:",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"tsdown": "catalog:",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|