package.json 602 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@growi/pluginkit",
  3. "version": "0.1.0",
  4. "license": "MIT",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "build": "vite build",
  10. "clean": "npx -y shx rm -rf dist",
  11. "dev": "vite build --mode dev",
  12. "watch": "yarn dev -w --emptyOutDir=false",
  13. "lint:js": "yarn eslint **/*.{js,ts}",
  14. "lint:typecheck": "tsc",
  15. "lint": "npm-run-all -p lint:*",
  16. "test": "vitest run --coverage"
  17. },
  18. "dependencies": {
  19. "@growi/core": "^6.1.5-RC",
  20. "extensible-custom-error": "^0.0.7"
  21. },
  22. "devDependencies": {
  23. }
  24. }