package.json 718 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@growi/core",
  3. "version": "6.0.8-RC.0",
  4. "description": "GROWI Core Libraries",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi"
  8. ],
  9. "main": "dist/index.js",
  10. "module": "dist/index.mjs",
  11. "types": "types/index.d.ts",
  12. "files": [
  13. "dist",
  14. "types"
  15. ],
  16. "scripts": {
  17. "build": "vite build",
  18. "clean": "npx -y shx rm -rf dist types",
  19. "dev": "vite build --mode dev",
  20. "watch": "yarn dev -w'",
  21. "lint:js": "eslint **/*.{js,ts}",
  22. "lint": "npm-run-all -p lint:*",
  23. "test": "jest --verbose"
  24. },
  25. "dependencies": {
  26. "bson-objectid": "^2.0.4",
  27. "escape-string-regexp": "^5.0.0"
  28. },
  29. "devDependencies": {
  30. "eslint-plugin-regex": "^1.8.0",
  31. "swr": "^2.0.3"
  32. }
  33. }