{
  "name": "@anansi/core",
  "version": "0.22.12",
  "description": "React 19 Framework",
  "homepage": "https://github.com/ntucker/anansi/tree/master/packages/core#readme",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:ntucker/anansi.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/ntucker/anansi/issues"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Nathaniel Tucker",
    "email": "me@ntucker.me",
    "url": "https://ntucker.true.io"
  },
  "files": [
    "src",
    "lib",
    "dist",
    "server.d.ts",
    "LICENSE",
    "README.md"
  ],
  "bin": {
    "serve-anansi": "./lib/scripts/serve.js",
    "start-anansi": "./lib/scripts/startDevserver.js"
  },
  "sideEffects": false,
  "publishConfig": {
    "module": "lib/index.js",
    "types": "lib/index.d.ts"
  },
  "type": "module",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "node": {
        "types": "./lib/index.server.d.ts",
        "require": "./dist/server.js",
        "import": "./lib/index.server.js"
      },
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    },
    "./server": {
      "types": "./lib/index.server.d.ts",
      "require": "./dist/server.js",
      "default": "./lib/index.server.js"
    },
    "./scripts": {
      "types": "./lib/scripts/index.d.ts",
      "default": "./lib/scripts/index.js"
    },
    "./antd": {
      "node": {
        "types": "./lib/spouts/antd.server.d.ts",
        "default": "./lib/spouts/antd.server.js"
      },
      "types": "./lib/spouts/antd.d.ts",
      "default": "./lib/spouts/antd.js"
    },
    "./antd/server": {
      "types": "./lib/spouts/antd.server.d.ts",
      "default": "./lib/spouts/antd.server.js"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "ssr",
    "react",
    "suspense",
    "concurrent mode",
    "router",
    "routing",
    "browser"
  ],
  "devDependencies": {
    "@ant-design/cssinjs": "^2.0.0",
    "@data-client/react": "^0.18.0",
    "@types/compression": "1.8.1",
    "@types/express": "^4.17.17",
    "@types/node": "^24.0.0",
    "@types/react": "19.2.17",
    "@types/react-dom": "19.2.3",
    "@types/source-map-support": "0.5.10",
    "@types/tmp": "0.2.6",
    "@types/webpack-hot-middleware": "2.25.12",
    "@types/webpack-node-externals": "^3",
    "react": "19.2.7",
    "react-dom": "19.2.7"
  },
  "dependencies": {
    "@anansi/router": "^0.10.24",
    "@babel/runtime-corejs3": "^7.26.0",
    "chalk": "^4.1.2",
    "compression": "^1.8.1",
    "core-js-pure": "^3.40.0",
    "cross-fetch": "^4.1.0",
    "enhanced-resolve": "^5.24.0",
    "express": "^4.22.2",
    "fs-require": "^1.6.0",
    "history": "^5.3.0",
    "http-proxy-middleware": "^3.0.7",
    "memfs": "^3.5.3",
    "ora": "^6.3.1",
    "source-map-support": "^0.5.21",
    "tmp": "^0.2.5",
    "unionfs": "^4.6.0",
    "webpack-dev-server": "^5.2.5",
    "whatwg-fetch": "^3.6.2"
  },
  "peerDependencies": {
    "@ant-design/cssinjs": "^1.5.1 || ^2.0.0",
    "@data-client/react": "^0.12.15 || ^0.13.0 || ^0.14.0 || ^0.15.0-0 || ^0.16.0 || ^0.18.0",
    "@types/react": "*",
    "@types/react-dom": "*",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "webpack": "^5.60.0"
  },
  "peerDependenciesMeta": {
    "@ant-design/cssinjs": {
      "optional": true
    },
    "@data-client/react": {
      "optional": true
    },
    "@types/react": {
      "optional": true
    },
    "@types/react-dom": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "pretest": "yarn g:lint .",
    "dev": "run build:lib -w & run build:bundle -w",
    "test": "yarn g:test",
    "test:ci": "yarn g:test",
    "test:type": "yarn g:tsc",
    "build": "run build:lib && run build:scripts && run build:bundle",
    "build:lib": "NODE_ENV=production BROWSERSLIST_ENV='2020' yarn g:babel --out-dir lib",
    "build:scripts": "NODE_ENV=production BROWSERSLIST_ENV='node22' yarn g:babel src/scripts --out-dir lib/scripts",
    "build:bundle": "BROWSERSLIST_ENV=node22 yarn g:webpack --mode=none --target=node && echo '{\"type\":\"commonjs\"}' > dist/package.json",
    "build:clean": "yarn g:clean",
    "prepack": "run build"
  }
}