package.json 599 B

1234567891011121314151617181920212223
  1. {
  2. "name": "@growi/hackmd",
  3. "version": "6.0.16-RC.0",
  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": "npm-run-all -p lint:*"
  17. },
  18. "dependencies": {},
  19. "devDependencies": {
  20. "penpal": "^4.0.0",
  21. "throttle-debounce": "^3.0.1"
  22. }
  23. }