package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "rspack.config.js",
  15. "tsconfig.json"
  16. ],
  17. "scripts": {
  18. "build": "exit 0",
  19. "build:fast": "exit 0",
  20. "build:watch": "exit 0",
  21. "clean": "rimraf dist",
  22. "dev": "MODE=app NODE_ENV=development rspack serve",
  23. "lint": "eslint ./src --cache",
  24. "lint:fix": "eslint ./src --fix",
  25. "start": "NODE_ENV=development rspack serve",
  26. "test": "exit",
  27. "test:cov": "exit",
  28. "watch": "exit 0"
  29. },
  30. "dependencies": {
  31. "@douyinfe/semi-icons": "^2.72.3",
  32. "@douyinfe/semi-ui": "^2.72.3",
  33. "@flowgram.ai/fixed-layout-editor": "workspace:*",
  34. "@flowgram.ai/fixed-semi-materials": "workspace:*",
  35. "@flowgram.ai/group-plugin": "workspace:*",
  36. "@flowgram.ai/minimap-plugin": "workspace:*",
  37. "lodash-es": "^4.17.21",
  38. "nanoid": "^4.0.2",
  39. "react": "^18",
  40. "react-dom": "^18",
  41. "styled-components": "^5"
  42. },
  43. "devDependencies": {
  44. "@rspack/cli": "0.2.1",
  45. "@types/lodash-es": "^4.17.12",
  46. "@types/node": "^18",
  47. "@types/react": "^18",
  48. "@types/react-dom": "^18",
  49. "@types/styled-components": "^5",
  50. "@typescript-eslint/parser": "^6.10.0",
  51. "eslint": "^8.54.0",
  52. "less": "^4.1.2",
  53. "less-loader": "^6"
  54. },
  55. "publishConfig": {
  56. "access": "public",
  57. "registry": "https://registry.npmjs.org/"
  58. }
  59. }