package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@flowgram.ai/fixed-semi-materials",
  3. "version": "0.1.0",
  4. "homepage": "https://coze-dev.github.io/flowgram.ai/",
  5. "repository": "https://github.com/coze-dev/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.72.3",
  30. "@douyinfe/semi-illustrations": "^2.36.0",
  31. "@douyinfe/semi-ui": "^2.72.3",
  32. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  33. "lodash": "^4.17.21",
  34. "nanoid": "^4.0.2"
  35. },
  36. "devDependencies": {
  37. "@flowgram.ai/eslint-config": "workspace:*",
  38. "@flowgram.ai/ts-config": "workspace:*",
  39. "@types/lodash": "^4.14.137",
  40. "@types/react": "^18",
  41. "@types/react-dom": "^18",
  42. "@types/styled-components": "^5",
  43. "eslint": "^8.54.0",
  44. "react": "^18",
  45. "react-dom": "^18",
  46. "styled-components": "^5",
  47. "tsup": "^8.0.1",
  48. "typescript": "^5.0.4",
  49. "vitest": "^0.34.6"
  50. },
  51. "peerDependencies": {
  52. "react": ">=17",
  53. "react-dom": ">=17",
  54. "styled-components": ">=4"
  55. },
  56. "publishConfig": {
  57. "access": "public",
  58. "registry": "https://registry.npmjs.org/"
  59. }
  60. }