{
  "name": "novajs-core",
  "version": "0.1.1",
  "description": "A lightweight Next.js alternative that eliminates SSR complexity",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "nova": "bin/nova.js",
    "create-novajs-app": "bin/create-novajs-app.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "react",
    "static-site-generator",
    "vite",
    "rspack",
    "nextjs-alternative"
  ],
  "author": "NovaJS Team",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "chokidar": "^3.5.3",
    "commander": "^11.0.0",
    "fs-extra": "^11.1.1",
    "glob": "^10.3.10",
    "ora": "^7.0.1",
    "prompts": "^2.4.2"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.1",
    "@types/jest": "^29.5.4",
    "@types/node": "^20.5.0",
    "@types/prompts": "^2.4.4",
    "@types/react": "^19.1.12",
    "jest": "^29.6.2",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "@rspack/core": ">=0.3.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0",
    "vite": ">=4.0.0 || >=5.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependenciesMeta": {
    "vite": {
      "optional": true
    },
    "@rspack/core": {
      "optional": true
    }
  }
}