package.json 854 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@growi/core",
  3. "version": "6.1.3-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": "dist/index.d.ts",
  12. "files": [
  13. "dist"
  14. ],
  15. "scripts": {
  16. "build": "vite build",
  17. "clean": "npx -y shx rm -rf dist",
  18. "dev": "vite build --mode dev",
  19. "watch": "yarn dev -w --emptyOutDir=false",
  20. "lint:js": "yarn eslint **/*.{js,ts}",
  21. "lint:typecheck": "tsc",
  22. "lint": "npm-run-all -p lint:*",
  23. "test": "jest --verbose"
  24. },
  25. "// comments for dependencies": {
  26. "escape-string-regexp": "5.0.0 or above exports only ESM"
  27. },
  28. "dependencies": {
  29. "bson-objectid": "^2.0.4",
  30. "escape-string-regexp": "^4.0.0"
  31. },
  32. "devDependencies": {
  33. "eslint-plugin-regex": "^1.8.0",
  34. "swr": "^2.0.3"
  35. }
  36. }