package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@flowgram.ai/demo-free-layout",
  3. "version": "1.0.3",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "main": "./src/index.ts",
  8. "files": [
  9. "src/",
  10. ".eslintrc.js",
  11. ".gitignore",
  12. "index.html",
  13. "package.json",
  14. "rsbuild.config.ts",
  15. "tsconfig.json",
  16. "README.md",
  17. "README.zh_CN.md"
  18. ],
  19. "dependencies": {
  20. "@douyinfe/semi-icons": "^2.80.0",
  21. "@douyinfe/semi-ui": "^2.80.0",
  22. "lodash-es": "^4.17.21",
  23. "nanoid": "^5.0.9",
  24. "react": "^18",
  25. "react-dom": "^18",
  26. "styled-components": "^5",
  27. "classnames": "^2.5.1",
  28. "@flowgram.ai/runtime-interface": "1.0.7",
  29. "@flowgram.ai/free-layout-editor": "1.0.7",
  30. "@flowgram.ai/free-snap-plugin": "1.0.7",
  31. "@flowgram.ai/free-lines-plugin": "1.0.7",
  32. "@flowgram.ai/free-node-panel-plugin": "1.0.7",
  33. "@flowgram.ai/export-plugin": "1.0.7",
  34. "@flowgram.ai/minimap-plugin": "1.0.7",
  35. "@flowgram.ai/free-container-plugin": "1.0.7",
  36. "@flowgram.ai/free-group-plugin": "1.0.7",
  37. "@flowgram.ai/panel-manager-plugin": "1.0.7",
  38. "@flowgram.ai/form-materials": "1.0.7",
  39. "@flowgram.ai/free-stack-plugin": "1.0.7",
  40. "@flowgram.ai/runtime-js": "1.0.7"
  41. },
  42. "devDependencies": {
  43. "@rsbuild/core": "^1.2.16",
  44. "@rsbuild/plugin-react": "^1.1.1",
  45. "@rsbuild/plugin-less": "^1.1.1",
  46. "@types/lodash-es": "^4.17.12",
  47. "@types/node": "^18",
  48. "@types/react": "^18",
  49. "@types/react-dom": "^18",
  50. "@types/styled-components": "^5",
  51. "typescript": "^5.8.3",
  52. "eslint": "^8.54.0",
  53. "cross-env": "~7.0.3",
  54. "@flowgram.ai/ts-config": "1.0.7",
  55. "@flowgram.ai/eslint-config": "1.0.7"
  56. },
  57. "publishConfig": {
  58. "access": "public",
  59. "registry": "https://registry.npmjs.org/"
  60. },
  61. "scripts": {
  62. "build": "exit 0",
  63. "build:fast": "exit 0",
  64. "build:watch": "exit 0",
  65. "build:prod": "cross-env MODE=app NODE_ENV=production rsbuild build",
  66. "build:analyze": "BUNDLE_ANALYZE=true rsbuild build",
  67. "clean": "rimraf dist",
  68. "dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
  69. "lint": "eslint ./src --cache",
  70. "lint:fix": "eslint ./src --fix",
  71. "ts-check": "tsc --noEmit",
  72. "start": "cross-env NODE_ENV=development rsbuild dev --open",
  73. "test": "exit",
  74. "test:cov": "exit",
  75. "watch": "exit 0"
  76. }
  77. }