managarten/packages/shared-pwa/package.json
Till-JS 5fe16b5eec feat(auth): add organization management endpoints
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
2026-02-16 12:47:49 +01:00

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"
}
}