{ "name": "vite-node", "type": "module", "version": "5.2.0", "description": "Vite as Node.js runtime", "author": "Anthony Fu ", "license": "MIT", "funding": "https://opencollective.com/antfu", "homepage": "https://github.com/antfu-collective/vite-node#readme", "repository": { "type": "git", "url": "git+https://github.com/antfu-collective/vite-node.git" }, "bugs": { "url": "https://github.com/antfu-collective/vite-node/issues" }, "sideEffects": false, "exports": { ".": "./dist/index.mjs", "./cli": "./dist/cli.mjs", "./client": "./dist/client.mjs", "./constants": "./dist/constants.mjs", "./hmr": "./dist/hmr.mjs", "./server": "./dist/server.mjs", "./source-map": "./dist/source-map.mjs", "./types": "./dist/types.mjs", "./utils": "./dist/utils.mjs", "./package.json": "./package.json" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "bin": { "vite-node": "./dist/cli.mjs" }, "files": [ "dist" ], "engines": { "node": "^20.19.0 || >=22.12.0" }, "dependencies": { "cac": "^6.7.14", "es-module-lexer": "^1.7.0", "obug": "^2.0.0", "pathe": "^2.0.3", "vite": "^7.2.2" }, "devDependencies": { "@antfu/eslint-config": "^6.2.0", "@jridgewell/trace-mapping": "^0.3.31", "@types/node": "^24.10.1", "bumpp": "^10.3.1", "eslint": "^9.39.1", "inquirer": "^13.0.1", "tinyexec": "^1.0.2", "tinyrainbow": "^3.0.3", "tsdown": "^0.16.5", "typescript": "^5.9.3", "vitest": "^4.0.10" }, "scripts": { "lint": "eslint", "build": "tsdown", "dev": "tsdown -w", "typecheck": "tsc --noEmit", "test": "vitest", "release": "bumpp" } }