package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "eslint.config.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/export-plugin": "workspace:*",
  43. "@flowgram.ai/panel-manager-plugin": "workspace:*",
  44. "lodash-es": "^4.17.21",
  45. "nanoid": "^5.0.9",
  46. "react": "^18",
  47. "react-dom": "^18",
  48. "styled-components": "^5"
  49. },
  50. "devDependencies": {
  51. "@flowgram.ai/ts-config": "workspace:*",
  52. "@flowgram.ai/eslint-config": "workspace:*",
  53. "@rsbuild/core": "^1.2.16",
  54. "@rsbuild/plugin-react": "^1.1.1",
  55. "@rsbuild/plugin-less": "^1.1.1",
  56. "@types/lodash-es": "^4.17.12",
  57. "@types/node": "^18",
  58. "@types/react": "^18",
  59. "@types/react-dom": "^18",
  60. "@types/styled-components": "^5",
  61. "@typescript-eslint/parser": "^8.0.0",
  62. "typescript": "^5.8.3",
  63. "eslint": "^9.0.0",
  64. "less": "^4.1.2",
  65. "less-loader": "^6",
  66. "cross-env": "~7.0.3"
  67. },
  68. "publishConfig": {
  69. "access": "public",
  70. "registry": "https://registry.npmjs.org/"
  71. }
  72. }