{ "name": "nypm", "version": "0.6.8", "description": "Unified Package Manager for Node.js", "license": "MIT", "repository": { "type": "git", "url": "unjs/nypm" }, "bin": { "nypm": "./dist/cli.mjs" }, "files": [ "dist" ], "type": "module", "sideEffects": false, "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { ".": "./dist/index.mjs" }, "dependencies": { "citty": "^0.2.2", "pathe": "^2.0.3", "tinyexec": "^1.2.4" }, "devDependencies": { "@types/node": "^26.0.1", "@typescript/native-preview": "7.0.0-dev.20260627.2", "@vitest/coverage-v8": "^4.1.9", "automd": "^0.4.3", "changelogen": "^0.6.2", "eslint-config-unjs": "^0.6.2", "expect-type": "^1.4.0", "obuild": "^0.4.37", "oxfmt": "^0.56.0", "oxlint": "^1.71.0", "pkg-types": "^2.3.1", "std-env": "^4.1.0", "typescript": "^6.0.3", "ufo": "^1.6.4", "vitest": "^4.1.9" }, "engines": { "node": ">=18" }, "scripts": { "build": "automd && obuild", "dev": "vitest dev", "lint": "oxlint . && oxfmt --check src test", "fmt": "oxlint . --fix && oxfmt src test", "nypm": "node ./src/cli.ts", "release": "pnpm test && pnpm build && changelogen --release --push && pnpm publish", "test": "pnpm lint && pnpm test:types && vitest run --coverage", "test:types": "tsgo --noEmit" } }