-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.46 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
81
82
83
84
85
{
"name": "@strapi-community/plugin-better-auth-dashboard",
"version": "1.0.0-alpha.8",
"description": "Better Auth dashboard for the Strapi admin panel",
"keywords": [
"strapi",
"plugin",
"better-auth",
"dashboard"
],
"license": "MIT",
"author": {
"name": "Boaz Poolman",
"email": "boaz.poolman@strapi.io",
"url": "https://github.com/boazpoolman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strapi-community/plugin-better-auth.git",
"directory": "plugins/plugin-better-auth-dashboard"
},
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"dev": "strapi-plugin watch",
"verify": "strapi-plugin verify",
"lint:ts:server": "cd server && tsc --noEmit",
"lint:ts:admin": "cd admin && tsc --noEmit",
"lint": "biome check --fix",
"test:e2e": "playwright test"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@playwright/test": "catalog:playwright",
"@strapi-community/dev-utils": "workspace:*",
"@strapi/sdk-plugin": "^6.0.0",
"@strapi/strapi": "catalog:strapi",
"@strapi/typescript-utils": "catalog:strapi",
"@types/koa": "^3.0.1",
"@types/node": "^22",
"@types/react": "^18.0.0",
"@types/styled-components": "^5.1.36",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@better-auth/infra": "^0.2.6",
"@strapi-community/plugin-better-auth": "workspace:^",
"@strapi/design-system": "^2.0.0",
"@strapi/icons": "^2.0.0",
"@strapi/strapi": "^5.45.0",
"@strapi/types": "^5.45.0",
"@strapi/utils": "^5.45.0",
"better-auth": ">=1.4.0 <2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^6.0.0 || ^7.0.0",
"react-query": "^3.0.0",
"styled-components": "^6.0.0"
},
"strapi": {
"kind": "plugin",
"name": "better-auth-dashboard",
"displayName": "Better Auth Dashboard",
"description": "Better Auth dashboard for the Strapi admin panel"
}
}