Skip to content

Commit

Permalink
chore: replace node with bun
Browse files Browse the repository at this point in the history
  • Loading branch information
shakkernerd committed Feb 8, 2025
1 parent d741060 commit ec4e1ed
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"name": "@elizaos/agent",
"version": "0.25.6-alpha.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"dev": "node --loader ts-node/esm src/index.ts",
"check-types": "tsc --noEmit"
},
"nodemonConfig": {
"watch": [
"src",
"../core/dist"
],
"ext": "ts,json",
"exec": "node --enable-source-maps --loader ts-node/esm src/index.ts"
},
"dependencies": {
"@elizaos/plugin-bootstrap": "workspace:*",
"@elizaos/core": "workspace:*",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"cors": "2.8.5",
"express": "4.21.1",
"multer": "1.4.5-lts.1",
"readline": "1.3.0",
"ws": "8.18.0",
"yargs": "17.7.2",
"minipass": "7.1.2"
},
"devDependencies": {
"@types/multer": "^1.4.12",
"ts-node": "10.9.2",
"tsup": "8.3.5"
}
"name": "@elizaos/agent",
"version": "0.25.6-alpha.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run src/index.ts",
"check-types": "tsc --noEmit"
},
"nodemonConfig": {
"watch": [
"src",
"../core/dist"
],
"ext": "ts,json",
"exec": "node --enable-source-maps --loader ts-node/esm src/index.ts"
},
"dependencies": {
"@elizaos/plugin-bootstrap": "workspace:*",
"@elizaos/core": "workspace:*",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"cors": "2.8.5",
"express": "4.21.1",
"multer": "1.4.5-lts.1",
"readline": "1.3.0",
"ws": "8.18.0",
"yargs": "17.7.2",
"minipass": "7.1.2"
},
"devDependencies": {
"@types/multer": "^1.4.12",
"ts-node": "10.9.2",
"tsup": "8.3.5"
}
}

0 comments on commit ec4e1ed

Please sign in to comment.