-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "@comet/dev-oidc-provider",
"version": "1.2.1",
"homepage": "https://github.com/vivid-planet/dev-oidc-provider#readme",
"bugs": {
"url": "https://github.com/vivid-planet/dev-oidc-provider/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivid-planet/dev-oidc-provider.git"
},
"license": "BSD-2-Clause",
"author": "Vivid Planet Software GmbH <office@vivid-planet.com> (https://www.vivid-planet.com/)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dev-oidc-provider": "lib/run.js"
},
"scripts": {
"build": "tsc",
"lint": "run-p lint:eslint lint:tsc",
"lint:ci": "npm run lint",
"lint:eslint": "eslint --max-warnings 0 --ext .ts,.tsx,.js,.jsx,.json,.md src/ package.json",
"lint:prettier": "npx prettier --check './**/*.{js,json,md,yml,yaml}'",
"lint:tsc": "tsc --project .",
"version": "changeset version && npm install"
},
"dependencies": {
"@koa/ejs": "^5.1.0",
"@koa/router": "^14.0.0",
"koa-body": "^6.0.1",
"oidc-provider": "^9.6.0",
"unconfig": "^7.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@comet/eslint-config": "^8.20.0",
"@types/koa__ejs": "^5.1.1",
"@types/koa__router": "^12.0.5",
"@types/node": "^24.12.2",
"@types/oidc-provider": "^9.5.0",
"eslint": "^9.39.3",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}