package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "exports": {
  8. "types": "./dist/index.d.ts",
  9. "import": "./dist/esm/index.js",
  10. "require": "./dist/index.js"
  11. },
  12. "main": "./dist/index.js",
  13. "module": "./dist/esm/index.js",
  14. "types": "./dist/index.d.ts",
  15. "files": [
  16. "dist"
  17. ],
  18. "scripts": {
  19. "dev": "npm run watch",
  20. "build": "npm run build:fast -- --dts-resolve",
  21. "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
  22. "build:watch": "npm run build:fast -- --dts-resolve",
  23. "clean": "rimraf dist",
  24. "test": "exit 0",
  25. "test:cov": "exit 0",
  26. "ts-check": "tsc --noEmit",
  27. "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
  28. },
  29. "dependencies": {
  30. "zod": "^3.24.4"
  31. },
  32. "devDependencies": {
  33. "@flowgram.ai/eslint-config": "workspace:*",
  34. "@flowgram.ai/ts-config": "workspace:*",
  35. "eslint": "^8.54.0",
  36. "tsup": "^8.0.1",
  37. "typescript": "^5.0.4",
  38. "vitest": "^0.34.6"
  39. },
  40. "publishConfig": {
  41. "access": "public",
  42. "registry": "https://registry.npmjs.org/"
  43. }
  44. }