-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
97 lines (97 loc) · 2.21 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
{
"name": "strapi-plugin-sso",
"version": "1.0.2",
"description": "Plug-in for single sign-on with Strapi!",
"strapi": {
"displayName": "Single Sign On",
"name": "strapi-plugin-sso",
"description": "Version 5 enables single sign-on",
"kind": "plugin"
},
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test": "jest",
"lint": "eslint"
},
"keywords": [
"strapi",
"plugin",
"oauth",
"SSO",
"Google",
"Cognito"
],
"peerDependencies": {
"@strapi/strapi": "^5.8.0"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.11",
"@strapi/icons": "^2.0.0-rc.11",
"@strapi/utils": "^5.8.0",
"axios": "^1.7.5",
"generate-password": "^1.7.1",
"pkce-challenge": "^3.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^6.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"author": {
"name": "yasudacloud",
"url": "https://github.com/yasudacloud/strapi-plugin-sso"
},
"repository": {
"type": "git",
"url": "https://github.com/yasudacloud/strapi-plugin-sso"
},
"bugs": {
"url": "https://github.com/yasudacloud/strapi-plugin-sso/issues"
},
"maintainers": [
{
"name": "yasudacloud"
}
],
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=8.6.0"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@strapi/sdk-plugin": "^5.2.0",
"eslint": "^9.0.0",
"globals": "^15.9.0",
"jest": "^29.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
"dist",
".cache"
],
"testEnvironment": "node"
},
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
}
}