-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "nuxt-openid-connect",
"version": "0.8.1",
"description": "An nuxt 3 module with OpenID-Connect(OIDC) integration.",
"keywords": [
"nuxt",
"oidc",
"module",
"nuxt 3.0",
"auth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aborn/nuxt-openid-connect.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"pub": "npm publish --access public"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"defu": "^6.0.0",
"openid-client": "^5.1.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.7.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.11.10",
"@types/uuid": "^8.3.4",
"eslint": "^9.4.0",
"nuxt": "^3.11.2",
"typescript": "^5.3.3"
},
"bugs": {
"url": "https://github.com/aborn/nuxt-openid-connect/issues"
},
"homepage": "https://github.com/aborn/nuxt-openid-connect#readme",
"author": "aborn"
}