package.json 702 B

1234567891011121314151617181920212223242526272829303132
  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": "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",
  20. "lint:js": "yarn eslint **/*.{js,ts}",
  21. "lint": "npm-run-all -p lint:*",
  22. "test": "jest --verbose"
  23. },
  24. "dependencies": {
  25. "bson-objectid": "^2.0.4",
  26. "escape-string-regexp": "^5.0.0"
  27. },
  28. "devDependencies": {
  29. "eslint-plugin-regex": "^1.8.0",
  30. "swr": "^2.0.3"
  31. }
  32. }