[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3ff5d584d87769f4ed0bc54981e54dfa5ff39005 52 lines 1.2 kB view raw
1{ 2 "name": "npmx-connector", 3 "version": "0.0.1", 4 "description": "Local connector for npmx.dev - enables authenticated npm operations from the web UI", 5 "license": "MIT", 6 "type": "module", 7 "repository": { 8 "type": "git", 9 "url": "git+https://github.com/npmx-dev/npmx.dev.git", 10 "directory": "cli" 11 }, 12 "bugs": { 13 "url": "https://github.com/npmx-dev/npmx.dev/issues" 14 }, 15 "homepage": "https://npmx.dev", 16 "bin": { 17 "npmx-connector": "./dist/cli.mjs" 18 }, 19 "exports": { 20 ".": { 21 "import": "./dist/index.mjs", 22 "types": "./dist/index.d.mts" 23 } 24 }, 25 "files": [ 26 "dist" 27 ], 28 "scripts": { 29 "build": "tsdown", 30 "dev": "NPMX_CLI_DEV=true node src/cli.ts", 31 "dev:debug": "DEBUG=npmx-connector NPMX_CLI_DEV=true node src/cli.ts", 32 "test:types": "tsc --noEmit" 33 }, 34 "dependencies": { 35 "@clack/prompts": "^1.0.0", 36 "citty": "^0.2.0", 37 "h3-next": "npm:h3@^2.0.1-rc.11", 38 "obug": "^2.1.1", 39 "srvx": "^0.10.1", 40 "valibot": "^1.2.0", 41 "validate-npm-package-name": "^7.0.2" 42 }, 43 "devDependencies": { 44 "@types/node": "24.10.9", 45 "@types/validate-npm-package-name": "4.0.2", 46 "tsdown": "0.20.1", 47 "typescript": "5.9.3" 48 }, 49 "engines": { 50 "node": ">=24" 51 } 52}