{
  "name": "@rebasepro/app",
  "version": "0.21.1",
  "description": "Rebase core — framework-agnostic runtime for data-driven admin panels",
  "keywords": [
    "rebase",
    "cms",
    "admin",
    "admin panel",
    "typescript",
    "headless",
    "headless cms",
    "content manager"
  ],
  "homepage": "https://rebase.pro",
  "bugs": {
    "url": "https://github.com/rebasepro/rebase/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rebasepro/rebase.git",
    "directory": "packages/app"
  },
  "funding": {
    "url": "https://github.com/sponsors/rebasepro"
  },
  "license": "MIT",
  "author": "Rebase",
  "type": "module",
  "main": "./dist/index.es.js",
  "module": "./dist/index.es.js",
  "types": "./dist/index.d.ts",
  "engines": {
    "node": ">=22.22.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "development": "./dist/index.es.js",
      "import": "./dist/index.es.js",
      "default": "./dist/index.es.js"
    },
    "./debug": {
      "types": "./dist/debug/index.d.ts",
      "development": "./dist/debug.js",
      "import": "./dist/debug.js",
      "default": "./dist/debug.js"
    },
    "./vitePlugin": {
      "types": "./dist/vitePlugin.d.ts",
      "development": "./dist/vitePlugin.js",
      "import": "./dist/vitePlugin.js",
      "default": "./dist/vitePlugin.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "compressorjs": "^1.3.0",
    "fast-equals": "6.0.2",
    "fuse.js": "^7.5.0",
    "i18next": "^26.3.6",
    "lucide-react": "1.27.0",
    "magic-string": "^0.30.0",
    "notistack": "^3.0.2",
    "react-i18next": "^17.0.11",
    "@rebasepro/common": "0.21.1",
    "@rebasepro/cms-types": "0.21.1",
    "@rebasepro/forms": "0.21.1",
    "@rebasepro/types": "0.21.1",
    "@rebasepro/ui": "0.21.1",
    "@rebasepro/utils": "0.21.1"
  },
  "peerDependencies": {
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "react-router": "^8.3.0",
    "typescript": "^6.0.0"
  },
  "devDependencies": {
    "@jest/globals": "^30.4.1",
    "@testing-library/jest-dom": "^7.0.0",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.1.2",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "@types/react-measure": "^2.0.12",
    "@vitejs/plugin-react": "^6.0.4",
    "babel-plugin-react-compiler": "beta",
    "cross-env": "^10.1.0",
    "esbuild": "^0.28.1",
    "jest": "^30.4.2",
    "jest-environment-jsdom": "^30.4.1",
    "react-router": "^8.3.0",
    "ts-jest": "^29.4.12",
    "tsd": "^0.33.0",
    "typescript": "^6.0.3",
    "vite": "^8.1.5"
  },
  "files": [
    "dist"
  ],
  "gitHead": "d935eefa5aa8d1009a2398cfac2c1e4ee9aeb6b6",
  "publishConfig": {
    "access": "public"
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest",
      "^.+\\.m?jsx?$": "<rootDir>/../../tooling/scripts/jest/react-router-esm-transform.cjs"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "mjs",
      "jsx",
      "json",
      "node"
    ],
    "testEnvironment": "jsdom",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/src/components/"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/test/setupTests.ts"
    ],
    "moduleNameMapper": {
      "\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js",
      "^@rebasepro/([a-z0-9-]+)$": "<rootDir>/../$1/src/index.ts",
      "^@rebasepro/cms-types$": "<rootDir>/../cms-types/src/index.ts"
    },
    "transformIgnorePatterns": [
      "node_modules/(?!.*(?:react-router|cookie-es|fractional-indexing))"
    ]
  },
  "scripts": {
    "watch": "vite build --watch",
    "build": "vite build && tsc --emitDeclarationOnly -p tsconfig.prod.json && node ../../tooling/scripts/add-dts-extensions.mjs dist && pnpm exec esbuild src/vitePlugin.ts --platform=node --format=esm --outfile=dist/vitePlugin.js && pnpm exec esbuild src/debug/index.ts --bundle --format=esm --jsx=automatic --external:react --external:react-dom --external:react/jsx-runtime --external:@rebasepro/* --outfile=dist/debug.js && node ../../tooling/scripts/assert-build-output.mjs",
    "test:lint": "eslint \"src/**\" --quiet",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "clean": "rm -rf dist && find ./src \\( -name '*.js' -o -name '*.d.ts' \\) -type f | xargs rm -f",
    "generateIcons": "ts-node --esm src/icons/generateIcons.ts"
  }
}