{
  "name": "@ironm00n/pyret-embed",
  "version": "0.0.1",
  "description": "A modern library for embedding Pyret into webpages with Next.js 14+ support",
  "type": "module",
  "main": "./dist/pyret.cjs",
  "module": "./dist/pyret.js",
  "types": "./dist/pyret.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/ironm00n/pyret-embed.git"
  },
  "exports": {
    ".": {
      "import": "./dist/pyret.js",
      "require": "./dist/pyret.cjs",
      "types": "./dist/pyret.d.ts"
    },
    "./api": {
      "import": "./dist/api.js",
      "require": "./dist/api.cjs",
      "types": "./dist/api.d.ts"
    },
    "./default-rpcs": {
      "import": "./dist/default-rpcs.cjs",
      "require": "./dist/default-rpcs.cjs",
      "types": "./dist/default-rpcs.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run types && rspack build --config rspack.config.cjs",
    "dev": "tsc --watch & rspack build --watch --config rspack.config.cjs",
    "types": "tsc --emitDeclarationOnly",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "typecheck": "tsc --noEmit",
    "pretest": "npm run build",
    "test": "node --test",
    "test:run": "npm run build && node --test",
    "test:coverage": "npm run build && c8 --reporter=text --reporter=html --reporter=lcov node --test",
    "test:watch": "npm run build && node --test --watch",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint . --ext .ts,.js",
    "lint:fix": "eslint . --ext .ts,.js --fix"
  },
  "keywords": [
    "pyret",
    "programming-language",
    "education",
    "embed",
    "nextjs",
    "typescript"
  ],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/ironm00n/pyret-embed/issues"
  },
  "homepage": "https://github.com/ironm00n/pyret-embed#readme",
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "dependencies": {
    "@zenfs/core": "^2.2.3",
    "buffer": "^6.0.3",
    "mustache": "^4.2.0",
    "path-browserify": "^1.0.1",
    "process": "^0.11.10",
    "util": "^0.12.5"
  },
  "devDependencies": {
    "@rspack/cli": "^1.1.7",
    "@rspack/core": "^1.1.7",
    "@types/node": "^20.0.0",
    "@types/react": "^19.1.10",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "c8": "^9.1.0",
    "eslint": "^8.57.0",
    "jsdom": "^25.0.1",
    "prettier": "^3.2.5",
    "typescript": "^5.8.3"
  },
  "peerDependencies": {
    "next": ">=14.0.0",
    "react": ">=18.0.0"
  }
}
