{
  "name": "coreclr-hosting",
  "version": "8.0.1",
  "description": "Hosting dotnet coreclr in node",
  "main": "bindings.js",
  "gypfile": true,
  "repository": {
    "type": "git",
    "url": "https://github.com/sanosdole/nodeclrhost.git"
  },
  "homepage": "https://github.com/sanosdole/nodeclrhost",
  "engines": {
    "node": ">=12.17"
  },
  "keywords": [
    "dotnet"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "download-hostfxr": "dotnet build hostfxr/DownloadHostFxr.csproj",
    "configure": "node-gyp configure",
    "build": "npm run download-hostfxr && npm run configure && npm run build:debug && npm run build:release",
    "rebuild": "npm run clean && npm run build",
    "build:debug": "node-gyp build --debug",
    "build:release": "node-gyp build",
    "clean": "node-gyp clean",
    "build-testapp": "dotnet build test/TestApp/TestApp.csproj",
    "test": "npm run build && npm run build-testapp && npm run mocha",
    "test-only": "npm run build-testapp && npm run mocha",
    "benchmark": "npm run build && dotnet build benchmark/Benchmark.csproj && node benchmark/index.js",
    "benchmark-only": "node benchmark/index.js",
    "mocha": "mocha -s 0",
    "prepare": "npm run build",
    "install": "prebuild-install || npm run rebuild",
    "prebuild-node": "node node_modules/prebuild/bin.js -t 12.16.3 --include-regex \"\\.(node|a|dll|so|dylib)$\"",
    "prebuild-electron": "prebuild -t 32.0.0 -r electron --include-regex \"\\.(node|a|dll|so|dylib)$\""
  },
  "author": "Daniel Martin",
  "license": "MIT",
  "devDependencies": {
    "benchmark": "^2.1.4",
    "benchr": "^4.3.0",
    "mocha": "^10.2.0",
    "node-addon-api": "^8.1.0",
    "node-gyp": "^10.2.0",
    "prebuild": "^13.0.1"
  },
  "dependencies": {
    "bindings": "^1.5.0",
    "prebuild-install": "^7.1.1"
  }
}
