-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.7 KB
/
package.json
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"$schema": "http://json.schemastore.org/package",
"name": "verdaccio-openid",
"version": "0.13.0",
"repository": "https://github.com/kuoruan/verdaccio-openid",
"license": "MIT",
"packageManager": "[email protected]",
"author": {
"name": "Xingwang Liao",
"email": "[email protected]"
},
"description": "A UI for OIDC authentication for Verdaccio, a fork of verdaccio-github-oauth-ui",
"keywords": [
"verdaccio",
"oidc",
"openid",
"authentication",
"oauth",
"oauth2",
"ui"
],
"main": "./dist/server/index.js",
"module": "./dist/server/index.mjs",
"bin": "./dist/verdaccio-openid.mjs",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c --environment NODE_ENV:production",
"start": "cross-env DEBUG='verdaccio:*' node_modules/verdaccio/bin/verdaccio -c verdaccio/verdaccio.yml",
"start:5": "cross-env DEBUG='verdaccio:*' node_modules/verdaccio5/bin/verdaccio -c verdaccio5/verdaccio.yml",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest --run",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@gitbeaker/rest": "^39.34.3",
"@isaacs/ttlcache": "^1.4.1",
"@verdaccio/auth": "8.0.0-next-8.7",
"@verdaccio/config": "8.0.0-next-8.7",
"@verdaccio/core": "8.0.0-next-8.7",
"@verdaccio/url": "13.0.0-next-8.7",
"debug": "^4.4.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"global-agent": "^3.0.0",
"ioredis": "^5.4.2",
"minimist": "^1.2.8",
"ms": "^2.1.3",
"node-persist": "^4.0.3",
"open": "^10.1.0",
"openid-client": "^5.7.1",
"picocolors": "^1.1.1",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.18.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/debug": "^4.1.12",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/global-agent": "^2.1.3",
"@types/lodash": "^4.17.14",
"@types/minimist": "^1.2.5",
"@types/ms": "^2.1.0",
"@types/node-persist": "^3.1.8",
"@verdaccio/types": "13.0.0-next-8.2",
"core-js": "^3.40.0",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-next": "^0.4.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.31.0",
"rollup-plugin-node-externals": "^8.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"verdaccio": "^6.0.5",
"verdaccio-htpasswd": "13.0.0-next-8.7",
"verdaccio-openid": "file:",
"verdaccio5": "npm:[email protected]",
"vitest": "^3.0.2"
},
"peerDependencies": {
"verdaccio": "^5.0.0||^6.0.0"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"marked@<4.0.10": ">=4.0.10",
"validator@<13.7.0": ">=13.7.0",
"qs@>=6.7.0 <6.7.3": ">=6.7.3",
"minimatch@<3.0.5": ">=3.0.5",
"tough-cookie@<4.1.3": ">=4.1.3",
"jsonwebtoken@<9.0.0": ">=9.0.0",
"async@>=3.0.0 <3.2.2": ">=3.2.2",
"body-parser@<1.20.3": ">=1.20.3",
"cookie@<0.7.0": ">=0.7.0",
"serve-static@<1.16.0": ">=1.16.0",
"semver@>=7.0.0 <7.5.2": ">=7.5.2"
}
}
}