package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@flowgram.ai/fixed-semi-materials",
  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. "build": "npm run build:fast -- --dts-resolve",
  20. "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
  21. "build:watch": "npm run build:fast -- --dts-resolve",
  22. "clean": "rimraf dist",
  23. "test": "exit 0",
  24. "test:cov": "exit 0",
  25. "ts-check": "tsc --noEmit",
  26. "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
  27. },
  28. "dependencies": {
  29. "@douyinfe/semi-icons": "^2.80.0",
  30. "@douyinfe/semi-ui": "^2.80.0",
  31. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  32. "lodash-es": "^4.17.21",
  33. "nanoid": "^5.0.9"
  34. },
  35. "devDependencies": {
  36. "@flowgram.ai/eslint-config": "workspace:*",
  37. "@flowgram.ai/ts-config": "workspace:*",
  38. "@types/lodash-es": "^4.17.12",
  39. "@types/react": "^18",
  40. "@types/react-dom": "^18",
  41. "@types/styled-components": "^5",
  42. "eslint": "^8.54.0",
  43. "react": "^18",
  44. "react-dom": "^18",
  45. "styled-components": "^5",
  46. "tsup": "^8.0.1",
  47. "typescript": "^5.8.3",
  48. "vitest": "^3.2.4"
  49. },
  50. "peerDependencies": {
  51. "react": ">=16.8",
  52. "react-dom": ">=16.8",
  53. "styled-components": ">=5"
  54. },
  55. "publishConfig": {
  56. "access": "public",
  57. "registry": "https://registry.npmjs.org/"
  58. }
  59. }