package.json 812 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@growi/pluginkit",
  3. "version": "1.2.1",
  4. "description": "Plugin kit for GROWI",
  5. "license": "MIT",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/growilabs/growi"
  9. },
  10. "main": "dist/index.cjs",
  11. "module": "dist/index.js",
  12. "types": "dist/index.d.ts",
  13. "type": "module",
  14. "files": [
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "vite build",
  19. "clean": "shx rm -rf dist",
  20. "dev": "vite build --mode dev",
  21. "watch": "pnpm run dev -w --emptyOutDir=false",
  22. "lint:biome": "biome check",
  23. "lint:typecheck": "tsgo --noEmit",
  24. "lint": "npm-run-all -p lint:*",
  25. "test": "vitest run --coverage"
  26. },
  27. "dependencies": {
  28. "@growi/core": "workspace:^",
  29. "extensible-custom-error": "^0.0.7"
  30. },
  31. "devDependencies": {
  32. "@types/react": "^18.2.14"
  33. }
  34. }