package.json 683 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@growi/hackmd",
  3. "version": "6.2.0-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": "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. "version": "yarn version --no-git-tag-version --preid=RC"
  19. },
  20. "dependencies": {},
  21. "devDependencies": {
  22. "penpal": "^4.0.0",
  23. "throttle-debounce": "^5.0.0"
  24. }
  25. }