UNPKG

vite-node

Version:
73 lines 1.88 kB
{ "name": "vite-node", "type": "module", "version": "6.0.0", "description": "Vite as Node.js runtime", "author": "Anthony Fu <anthonyfu117@hotmail.com>", "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" }, "bin": { "vite-node": "./dist/cli.mjs" }, "files": [ "dist" ], "engines": { "node": "^20.19.0 || >=22.12.0" }, "inlinedDependencies": { "tinyrainbow": "3.1.0", "@jridgewell/sourcemap-codec": "1.5.5", "@jridgewell/resolve-uri": "3.1.2", "@jridgewell/trace-mapping": "0.3.31" }, "dependencies": { "cac": "^7.0.0", "es-module-lexer": "^2.0.0", "obug": "^2.1.1", "pathe": "^2.0.3", "vite": "^8.0.0" }, "devDependencies": { "@antfu/eslint-config": "^7.7.2", "@jridgewell/trace-mapping": "^0.3.31", "@types/node": "^25.4.0", "bumpp": "^10.4.1", "eslint": "^10.0.3", "inquirer": "^13.3.0", "tinyexec": "^1.0.2", "tinyrainbow": "^3.1.0", "tsdown": "^0.21.2", "typescript": "^5.9.3", "vitest": "^4.1.0" }, "scripts": { "lint": "eslint", "build": "tsdown", "dev": "tsdown -w", "typecheck": "tsc --noEmit", "test": "vitest", "release": "bumpp" } }