package.json 543 B

12345678910111213141516171819202122
  1. {
  2. "name": "@growi/hackmd",
  3. "version": "6.0.8-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. "scripts": {
  10. "build": "vite build",
  11. "clean": "npx -y shx rm -rf dist",
  12. "dev": "vite build --mode dev",
  13. "watch": "yarn dev -w",
  14. "lint:js": "eslint **/*.{js,ts}",
  15. "lint": "npm-run-all -p lint:*"
  16. },
  17. "dependencies": {},
  18. "devDependencies": {
  19. "penpal": "^4.0.0",
  20. "throttle-debounce": "^3.0.1"
  21. }
  22. }