package.json 638 B

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