forked from
npmx.dev/npmx.dev
[READ-ONLY]
a fast, modern browser for the npm registry
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 ".": "./dist/index.mjs"
21 },
22 "files": [
23 "dist"
24 ],
25 "scripts": {
26 "build": "tsdown",
27 "dev": "NPMX_CLI_DEV=true node src/cli.ts",
28 "dev:debug": "DEBUG=npmx-connector NPMX_CLI_DEV=true node src/cli.ts",
29 "dev:mock": "NPMX_CLI_DEV=true node src/mock-server.ts",
30 "test:types": "tsc --noEmit"
31 },
32 "dependencies": {
33 "@clack/prompts": "^1.0.0",
34 "@lydell/node-pty": "1.2.0-beta.3",
35 "citty": "^0.2.0",
36 "h3-next": "npm:h3@^2.0.1-rc.11",
37 "obug": "^2.1.1",
38 "srvx": "^0.10.1",
39 "valibot": "^1.2.0",
40 "validate-npm-package-name": "^7.0.2"
41 },
42 "devDependencies": {
43 "@types/node": "24.10.9",
44 "@types/validate-npm-package-name": "4.0.2",
45 "tsdown": "0.20.1",
46 "typescript": "5.9.3"
47 },
48 "engines": {
49 "node": ">=24"
50 }
51}