package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@flowgram.ai/panel-manager-plugin",
  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. "scripts": {
  16. "build": "npm run build:fast -- --dts-resolve",
  17. "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
  18. "build:watch": "npm run build:fast -- --dts-resolve",
  19. "clean": "rimraf dist",
  20. "test": "exit 0",
  21. "test:cov": "exit 0",
  22. "ts-check": "tsc --noEmit",
  23. "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
  24. },
  25. "dependencies": {
  26. "inversify": "^6.0.1",
  27. "clsx": "^1.1.1",
  28. "nanoid": "^5.0.9",
  29. "zustand": "^5.0.8",
  30. "use-sync-external-store": "^1.6.0",
  31. "@flowgram.ai/core": "workspace:*",
  32. "@flowgram.ai/utils": "workspace:*"
  33. },
  34. "devDependencies": {
  35. "react": "^18",
  36. "react-dom": "^18",
  37. "@types/react": "^18",
  38. "@types/react-dom": "^18",
  39. "@flowgram.ai/eslint-config": "workspace:*",
  40. "@flowgram.ai/ts-config": "workspace:*",
  41. "tsup": "^8.0.1",
  42. "typescript": "^5.8.3"
  43. },
  44. "peerDependencies": {
  45. "react": ">=16.8",
  46. "react-dom": ">=16.8"
  47. },
  48. "peerDependenciesMeta": {
  49. "react": {
  50. "optional": true
  51. }
  52. },
  53. "publishConfig": {
  54. "access": "public",
  55. "registry": "https://registry.npmjs.org/"
  56. }
  57. }