package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@flowgram.ai/runtime-interface",
  3. "version": "0.1.8",
  4. "homepage": "https://flowgram.ai/",
  5. "repository": "https://github.com/bytedance/flowgram.ai",
  6. "license": "MIT",
  7. "type": "module",
  8. "exports": {
  9. "types": "./dist/index.d.ts",
  10. "import": "./dist/esm/index.js",
  11. "require": "./dist/index.js"
  12. },
  13. "main": "./dist/index.js",
  14. "module": "./dist/esm/index.js",
  15. "types": "./dist/index.d.ts",
  16. "files": [
  17. "dist"
  18. ],
  19. "scripts": {
  20. "dev": "npm run watch",
  21. "build": "npm run build:fast -- --dts-resolve",
  22. "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
  23. "build:watch": "npm run build:fast -- --dts-resolve",
  24. "clean": "rimraf dist",
  25. "test": "exit 0",
  26. "test:cov": "exit 0",
  27. "ts-check": "tsc --noEmit",
  28. "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
  29. },
  30. "dependencies": {
  31. "zod": "^3.24.4"
  32. },
  33. "devDependencies": {
  34. "@flowgram.ai/eslint-config": "workspace:*",
  35. "@flowgram.ai/ts-config": "workspace:*",
  36. "eslint": "^8.54.0",
  37. "tsup": "^8.0.1",
  38. "typescript": "^5.8.3",
  39. "vitest": "^0.34.6"
  40. },
  41. "publishConfig": {
  42. "access": "public",
  43. "registry": "https://registry.npmjs.org/"
  44. }
  45. }