-
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.43 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.43 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": "strapi-plugin-multitenancy",
"version": "1.0.1",
"description": "PostgreSQL schema-per-tenant isolation for Strapi 5. Identifies tenants via subdomain, propagates context through AsyncLocalStorage, and proxies Strapi's DB layer to route queries to the correct schema.",
"main": "strapi-server.js",
"license": "MIT",
"author": {
"name": "AlvaroVeloso070",
"url": "https://github.com/AlvaroVeloso070"
},
"keywords": [
"strapi",
"strapi-plugin",
"multitenancy",
"multi-tenant",
"postgresql",
"schema",
"isolation",
"subdomain",
"saas"
],
"homepage": "https://github.com/AlvaroVeloso070/strapi-plugin-multitenancy#readme",
"bugs": {
"url": "https://github.com/AlvaroVeloso070/strapi-plugin-multitenancy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AlvaroVeloso070/strapi-plugin-multitenancy.git"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@strapi/strapi": "^5.0.0"
},
"strapi": {
"name": "multitenancy",
"displayName": "Multitenant",
"description": "PostgreSQL schema-per-tenant isolation via subdomain routing for Strapi 5",
"kind": "plugin",
"required": false
},
"exports": {
"./strapi-admin": "./admin/src/index.js",
"./strapi-server": "./strapi-server.js"
},
"files": [
"admin",
"server",
"strapi-server.js"
]
}