-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.23 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "verdaccio-cli",
"version": "1.1.1",
"description": "CLI tool for Verdaccio registries — non-interactive login, whoami with groups, and health checks",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"verdaccioctl": "./lib/cli.js"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/"
],
"engines": {
"node": ">=24"
},
"keywords": [
"verdaccio",
"cli",
"login",
"npm",
"registry",
"auth"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "git",
"url": "https://github.com/verdaccio/registry-cli.git"
},
"bugs": {
"url": "https://github.com/verdaccio/registry-cli/issues"
},
"packageManager": "pnpm@11.1.1+sha512.d1fdf5f73c617b64fa1a56a81c3c8dfe0e966e33a6010aa256b517ae77be21d93e05affc0de1a83b0e4f29d569f68b446ae8f068cd7247c0bb3df0fb4d7bdf9a",
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "25.5.0",
"cross-env": "^7.0.3",
"eslint": "10.0.2",
"@verdaccio/eslint-config": "12.0.0",
"prettier": "3.8.1",
"rimraf": "^5.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vite": "8.0.1",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.0"
},
"scripts": {
"clean": "rimraf ./lib",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci:version:changeset": "changeset version",
"ci:version": "pnpm ci:version:changeset && npm run ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"build": "tsc && chmod +x lib/cli.js"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
}