package.json 618 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@growi/ui",
  3. "version": "6.1.4-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. "version": "yarn version --no-git-tag-version"
  18. },
  19. "dependencies": {
  20. "@growi/core": "link:../core"
  21. },
  22. "devDependencies": {
  23. "react": "^18.2.0"
  24. }
  25. }