package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@flowgram.ai/demo-fixed-layout-simple",
  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/minimap-plugin": "workspace:*",
  36. "nanoid": "^4.0.2",
  37. "react": "^18",
  38. "react-dom": "^18"
  39. },
  40. "devDependencies": {
  41. "@rspack/cli": "0.2.1",
  42. "@types/node": "^18",
  43. "@types/react": "^18",
  44. "@types/react-dom": "^18",
  45. "@typescript-eslint/parser": "^6.10.0",
  46. "eslint": "^8.54.0",
  47. "less": "^4.1.2",
  48. "less-loader": "^6"
  49. },
  50. "publishConfig": {
  51. "access": "public",
  52. "registry": "https://registry.npmjs.org/"
  53. }
  54. }