-
-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 969 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 969 Bytes
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
{
"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",
"bin": {
"npmx-connector": "./dist/cli.mjs"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "node --experimental-strip-types src/cli.ts",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "1.0.0-alpha.9",
"citty": "^0.2.0",
"consola": "^3.4.2",
"defu": "^6.1.4",
"h3-next": "npm:h3@^2.0.1-rc.11",
"ofetch": "^1.5.1",
"picocolors": "^1.1.1",
"srvx": "^0.10.1",
"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"
}
}