package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@flowgram.ai/demo-sub-canvas",
  3. "version": "0.1.0",
  4. "description": "",
  5. "keywords": [],
  6. "license": "MIT",
  7. "main": "./src/index.tsx",
  8. "files": [
  9. "src/",
  10. ".eslintrc.js",
  11. ".gitignore",
  12. "index.html",
  13. "package.json",
  14. "rsbuild.config.ts",
  15. "tsconfig.json"
  16. ],
  17. "scripts": {
  18. "build": "exit 0",
  19. "build:fast": "exit 0",
  20. "build:watch": "exit 0",
  21. "build:prod": "cross-env MODE=app NODE_ENV=production rsbuild build",
  22. "clean": "rimraf dist",
  23. "dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
  24. "lint": "eslint ./src --cache",
  25. "lint:fix": "eslint ./src --fix",
  26. "ts-check": "tsc --noEmit",
  27. "start": "cross-env NODE_ENV=development rsbuild dev --open",
  28. "test": "exit",
  29. "test:cov": "exit",
  30. "watch": "exit 0"
  31. },
  32. "dependencies": {
  33. "@flowgram.ai/free-layout-editor": "workspace:*",
  34. "@flowgram.ai/free-snap-plugin": "workspace:*",
  35. "@flowgram.ai/free-container-plugin": "workspace:*",
  36. "@flowgram.ai/minimap-plugin": "workspace:*",
  37. "react": "^18",
  38. "react-dom": "^18"
  39. },
  40. "devDependencies": {
  41. "@flowgram.ai/ts-config": "workspace:*",
  42. "@flowgram.ai/eslint-config": "workspace:*",
  43. "@rsbuild/core": "^1.2.16",
  44. "@rsbuild/plugin-react": "^1.1.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": "^5.8.3",
  51. "eslint": "^8.54.0",
  52. "cross-env": "~7.0.3"
  53. },
  54. "publishConfig": {
  55. "access": "public",
  56. "registry": "https://registry.npmjs.org/"
  57. }
  58. }