package.json 618 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@growi/pluginkit",
  3. "version": "0.1.0",
  4. "license": "MIT",
  5. "main": "dist/index.cjs",
  6. "module": "dist/index.js",
  7. "types": "dist/index.d.ts",
  8. "type": "module",
  9. "scripts": {
  10. "build": "vite build",
  11. "clean": "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. "test": "vitest run --coverage"
  18. },
  19. "dependencies": {
  20. "@growi/core": "link:../core",
  21. "extensible-custom-error": "^0.0.7"
  22. },
  23. "devDependencies": {
  24. }
  25. }