| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@flowgram.ai/runtime-js",
- "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/esm/index.js",
- "require": "./dist/index.js"
- },
- "main": "./dist/index.js",
- "module": "./dist/esm/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "scripts": {
- "dev": "npm run watch",
- "build": "npm run build:fast -- --dts-resolve",
- "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
- "build:watch": "npm run build:fast -- --dts-resolve",
- "clean": "rimraf dist",
- "test": "vitest run",
- "test:cov": "vitest run --coverage",
- "ts-check": "tsc --noEmit",
- "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist",
- "lint": "eslint ./src --cache",
- "lint:fix": "eslint ./src --fix"
- },
- "dependencies": {
- "@langchain/openai": "0.5.18",
- "@langchain/core": "^0.3.58",
- "lodash-es": "^4.17.21",
- "uuid": "^9.0.0",
- "zod": "^3.24.4"
- },
- "devDependencies": {
- "@flowgram.ai/runtime-interface": "workspace:*",
- "@flowgram.ai/eslint-config": "workspace:*",
- "@flowgram.ai/ts-config": "workspace:*",
- "@types/lodash-es": "^4.17.12",
- "@types/uuid": "^9.0.1",
- "@vitest/coverage-v8": "^3.2.4",
- "eslint": "^9.0.0",
- "dotenv": "~16.5.0",
- "tsup": "^8.0.1",
- "typescript": "^5.8.3",
- "vitest": "^3.2.4"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- }
- }
|