mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
68 lines
1.5 KiB
JSON
68 lines
1.5 KiB
JSON
{
|
|
"name": "vite-node",
|
|
"version": "0.0.142",
|
|
"description": "Vite as Node.js runtime",
|
|
"homepage": "https://github.com/vitest-dev/vitest#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/vitest-dev/vitest/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vitest-dev/vitest.git",
|
|
"directory": "packages/vite-node"
|
|
},
|
|
"funding": "https://github.com/sponsors/antfu",
|
|
"license": "MIT",
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./index.d.ts"
|
|
},
|
|
"./client": {
|
|
"import": "./dist/client.js",
|
|
"types": "./client.d.ts"
|
|
},
|
|
"./server": {
|
|
"import": "./dist/server.js",
|
|
"types": "./server.d.ts"
|
|
},
|
|
"./utils": {
|
|
"import": "./dist/utils.js",
|
|
"types": "./utils.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./index.d.ts",
|
|
"bin": {
|
|
"vite-node": "./vite-node.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts",
|
|
"*.mjs"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c",
|
|
"dev": "rollup -c --watch --watch.include=src/**",
|
|
"prepublishOnly": "nr build",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"kolorist": "^1.5.1",
|
|
"minimist": "^1.2.5",
|
|
"mlly": "^0.3.17",
|
|
"pathe": "^0.2.0",
|
|
"vite": "^2.7.10"
|
|
},
|
|
"devDependencies": {
|
|
"@types/minimist": "^1.2.2",
|
|
"rollup": "^2.63.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.14.0"
|
|
}
|
|
}
|