package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@flowgram.ai/demo-fixed-layout",
  3. "version": "0.1.0",
  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. "scripts": {
  20. "build": "exit 0",
  21. "build:fast": "exit 0",
  22. "build:watch": "exit 0",
  23. "build:prod": "cross-env MODE=app NODE_ENV=production rsbuild build",
  24. "clean": "rimraf dist",
  25. "dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
  26. "lint": "eslint ./src --cache",
  27. "lint:fix": "eslint ./src --fix",
  28. "ts-check": "tsc --noEmit",
  29. "start": "cross-env NODE_ENV=development rsbuild dev --open",
  30. "test": "exit",
  31. "test:cov": "exit",
  32. "watch": "exit 0"
  33. },
  34. "dependencies": {
  35. "@douyinfe/semi-icons": "^2.80.0",
  36. "@douyinfe/semi-ui": "^2.80.0",
  37. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  38. "@flowgram.ai/fixed-semi-materials": "workspace:*",
  39. "@flowgram.ai/form-materials": "workspace:*",
  40. "@flowgram.ai/group-plugin": "workspace:*",
  41. "@flowgram.ai/minimap-plugin": "workspace:*",
  42. "@flowgram.ai/panel-manager-plugin": "workspace:*",
  43. "lodash-es": "^4.17.21",
  44. "nanoid": "^5.0.9",
  45. "react": "^18",
  46. "react-dom": "^18",
  47. "styled-components": "^5"
  48. },
  49. "devDependencies": {
  50. "@flowgram.ai/ts-config": "workspace:*",
  51. "@flowgram.ai/eslint-config": "workspace:*",
  52. "@rsbuild/core": "^1.2.16",
  53. "@rsbuild/plugin-react": "^1.1.1",
  54. "@rsbuild/plugin-less": "^1.1.1",
  55. "@types/lodash-es": "^4.17.12",
  56. "@types/node": "^18",
  57. "@types/react": "^18",
  58. "@types/react-dom": "^18",
  59. "@types/styled-components": "^5",
  60. "@typescript-eslint/parser": "^6.10.0",
  61. "typescript": "^5.8.3",
  62. "eslint": "^8.54.0",
  63. "less": "^4.1.2",
  64. "less-loader": "^6",
  65. "cross-env": "~7.0.3"
  66. },
  67. "publishConfig": {
  68. "access": "public",
  69. "registry": "https://registry.npmjs.org/"
  70. }
  71. }