| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "@flowgram.ai/runtime-nodejs",
- "version": "0.1.8",
- "homepage": "https://flowgram.ai/",
- "repository": "https://github.com/bytedance/flowgram.ai",
- "license": "MIT",
- "type": "module",
- "exports": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.js"
- },
- "module": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "scripts": {
- "dev": "tsx watch src",
- "build": "npm run build:fast -- --dts-resolve",
- "build:fast": "tsup src/index.ts --format esm --sourcemap --out-dir dist",
- "build:watch": "npm run build:fast -- --dts-resolve",
- "lint": "eslint --cache src",
- "lint-fix": "eslint --fix src",
- "type-check": "tsc",
- "start": "node dist/index.js",
- "test": "exit 0",
- "test:cov": "exit 0"
- },
- "dependencies": {
- "@flowgram.ai/runtime-js": "workspace:*",
- "@flowgram.ai/runtime-interface": "workspace:*",
- "@fastify/cors": "^8.2.1",
- "@fastify/swagger": "^8.5.1",
- "@fastify/swagger-ui": "4.1.0",
- "@fastify/websocket": "^10.0.1",
- "@trpc/server": "^10.27.1",
- "trpc-openapi": "^1.2.0",
- "fastify": "^4.17.0",
- "zod": "^3.24.4"
- },
- "devDependencies": {
- "@flowgram.ai/ts-config": "workspace:*",
- "@flowgram.ai/eslint-config": "workspace:*",
- "@types/cors": "^2.8.13",
- "dotenv": "~16.5.0",
- "@types/node": "^18",
- "eslint": "^9.0.0",
- "typescript": "^5.8.3",
- "tsup": "^8.0.1",
- "tsx": "~4.19.4",
- "eslint-plugin-json": "^4.0.1",
- "@typescript-eslint/eslint-plugin": "^8.0.0",
- "@typescript-eslint/parser": "^8.0.0",
- "@vitest/coverage-v8": "^3.2.4",
- "vitest": "^3.2.4"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- }
- }
|