package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@flowgram.ai/runtime-nodejs",
  3. "version": "0.1.0",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "scripts": {
  8. "dev": "tsx watch src",
  9. "build": "npm run build:fast -- --dts-resolve",
  10. "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
  11. "build:watch": "npm run build:fast -- --dts-resolve",
  12. "lint": "eslint --cache src",
  13. "lint-fix": "eslint --fix src",
  14. "type-check": "tsc",
  15. "start": "node dist/index.js",
  16. "test": "exit 0",
  17. "test:cov": "exit 0"
  18. },
  19. "dependencies": {
  20. "@flowgram.ai/runtime-js": "workspace:*",
  21. "@flowgram.ai/runtime-interface": "workspace:*",
  22. "@fastify/cors": "^8.2.1",
  23. "@fastify/swagger": "^8.5.1",
  24. "@fastify/swagger-ui": "4.1.0",
  25. "@langchain/openai": "^0.5.11",
  26. "@langchain/core": "^0.3.57",
  27. "@fastify/websocket": "^10.0.1",
  28. "@trpc/server": "^10.27.1",
  29. "trpc-openapi": "^1.2.0",
  30. "fastify": "^4.17.0",
  31. "tslib": "^2.8.1",
  32. "lodash-es": "^4.17.21",
  33. "ws": "^8.0.0",
  34. "zod": "^3.24.4"
  35. },
  36. "devDependencies": {
  37. "@flowgram.ai/ts-config": "workspace:*",
  38. "@flowgram.ai/eslint-config": "workspace:*",
  39. "@types/cors": "^2.8.13",
  40. "dotenv": "~16.5.0",
  41. "@types/node": "^18",
  42. "@types/ws": "^8.2.0",
  43. "@types/lodash-es": "^4.17.12",
  44. "eslint": "^8.54.0",
  45. "npm-run-all": "^4.1.5",
  46. "@babel/eslint-parser": "~7.19.1",
  47. "typescript": "^5.0.4",
  48. "tsup": "^8.0.1",
  49. "tsx": "~4.19.4",
  50. "eslint-plugin-json": "^4.0.1",
  51. "@typescript-eslint/eslint-plugin": "^6.10.0",
  52. "@typescript-eslint/parser": "^6.10.0",
  53. "@eslint/eslintrc": "^3",
  54. "@vitest/coverage-v8": "^0.32.0",
  55. "vitest": "^0.34.6",
  56. "wait-port": "^1.0.1"
  57. },
  58. "publishConfig": {
  59. "access": "public",
  60. "registry": "https://registry.npmjs.org/"
  61. }
  62. }