| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "@growi/core",
- "version": "6.1.0-RC.2",
- "description": "GROWI Core Libraries",
- "license": "MIT",
- "keywords": [
- "growi"
- ],
- "main": "dist/index.js",
- "module": "dist/index.mjs",
- "types": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "vite build",
- "clean": "npx -y shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,ts}",
- "lint:typecheck": "tsc",
- "lint": "npm-run-all -p lint:*",
- "test": "jest --verbose"
- },
- "// comments for dependencies": {
- "escape-string-regexp": "5.0.0 or above exports only ESM"
- },
- "dependencies": {
- "bson-objectid": "^2.0.4",
- "escape-string-regexp": "^4.0.0"
- },
- "devDependencies": {
- "eslint-plugin-regex": "^1.8.0",
- "swr": "^2.0.3"
- }
- }
|