package.json 627 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@growi/hackmd",
  3. "version": "6.1.0-RC.2",
  4. "description": "GROWI js and css files to use hackmd",
  5. "license": "MIT",
  6. "type": "module",
  7. "main": "dist/index.cjs",
  8. "module": "dist/index.js",
  9. "types": "dist/index.d.ts",
  10. "scripts": {
  11. "build": "vite build",
  12. "clean": "npx -y shx rm -rf dist",
  13. "dev": "vite build --mode dev",
  14. "watch": "yarn dev -w --emptyOutDir=false",
  15. "lint:js": "yarn eslint **/*.{js,ts}",
  16. "lint:typecheck": "tsc",
  17. "lint": "npm-run-all -p lint:*"
  18. },
  19. "dependencies": {},
  20. "devDependencies": {
  21. "penpal": "^4.0.0",
  22. "throttle-debounce": "^3.0.1"
  23. }
  24. }