Files
my_site/node_modules/wsl-utils/package.json
2026-03-24 14:30:59 +08:00

49 lines
915 B
JSON

{
"name": "wsl-utils",
"version": "0.3.1",
"description": "Utilities for working with Windows Subsystem for Linux (WSL)",
"license": "MIT",
"repository": "sindresorhus/wsl-utils",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && ava && tsc index.d.ts --skipLibCheck"
},
"files": [
"index.js",
"index.d.ts",
"utilities.js"
],
"keywords": [
"wsl",
"windows",
"subsystem",
"linux",
"powershell",
"mount",
"utilities"
],
"dependencies": {
"is-wsl": "^3.1.0",
"powershell-utils": "^0.1.0"
},
"devDependencies": {
"ava": "^6.4.1",
"typescript": "^5.9.3",
"xo": "^1.2.3"
}
}