mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
Add missing organization features for Teams functionality: - PUT /auth/organizations/:id - update organization - DELETE /auth/organizations/:id - delete organization - PATCH /auth/organizations/:orgId/members/:memberId/role - update member role - GET /auth/organizations/:id/invitations - list org invitations - GET /auth/invitations - list user invitations - DELETE /auth/invitations/:id - cancel or reject invitation
27 lines
512 B
JSON
27 lines
512 B
JSON
{
|
|
"name": "@manacore/shared-pwa",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"@vite-pwa/sveltekit": ">=0.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vite-pwa/sveltekit": "^0.6.5",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^6.0.0",
|
|
"workbox-build": "^7.0.0"
|
|
}
|
|
}
|