forked from npmx-dev/npmx.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "npmx-connector",
"version": "0.0.1",
"description": "Local connector for npmx.dev - enables authenticated npm operations from the web UI",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/npmx-dev/npmx.dev.git",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/npmx-dev/npmx.dev/issues"
},
"homepage": "https://npmx.dev",
"bin": {
"npmx-connector": "./dist/cli.mjs"
},
"exports": {
".": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "NPMX_CLI_DEV=true node src/cli.ts",
"dev:debug": "DEBUG=npmx-connector NPMX_CLI_DEV=true node src/cli.ts",
"dev:mock": "NPMX_CLI_DEV=true node src/mock-server.ts",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@lydell/node-pty": "1.2.0-beta.3",
"citty": "^0.2.0",
"h3-next": "npm:h3@^2.0.1-rc.11",
"obug": "^2.1.1",
"srvx": "^0.10.1",
"valibot": "^1.2.0",
"validate-npm-package-name": "^7.0.2"
},
"devDependencies": {
"@types/node": "24.10.9",
"@types/validate-npm-package-name": "4.0.2",
"tsdown": "0.20.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=24"
}
}