package.json 565 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@growi/ui",
  3. "version": "6.1.3-RC.0",
  4. "description": "GROWI UI Libraries",
  5. "license": "MIT",
  6. "keywords": ["growi"],
  7. "type": "module",
  8. "files": ["dist"],
  9. "scripts": {
  10. "build": "vite build",
  11. "clean": "npx -y shx rm -rf dist",
  12. "dev": "vite build --mode dev",
  13. "watch": "yarn dev -w --emptyOutDir=false",
  14. "lint:js": "yarn eslint **/*.{js,ts}",
  15. "lint:typecheck": "tsc",
  16. "lint": "npm-run-all -p lint:*"
  17. },
  18. "dependencies": {
  19. "@growi/core": "^6.1.3-RC.0"
  20. },
  21. "devDependencies": {
  22. "react": "^18.2.0"
  23. }
  24. }