Files
pr-preview/node_modules/nypm/package.json
T
space a71f801c3f feat: initial scaffold - backend, frontend, Prisma schema, Docker
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings
- Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers
- Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page
- Docker Compose and Dockerfile for self-hosted deployment
- Uses bcryptjs for Node 24 compatibility

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-25 00:18:08 +02:00

58 lines
1.4 KiB
JSON

{
"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"
}
}