blimu 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/index.d.ts +4 -0
- package/index.js +4 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# blimu
|
|
2
|
+
|
|
3
|
+
This package is a placeholder to reserve the "blimu" package name on npm.
|
|
4
|
+
|
|
5
|
+
For the actual Blimu SDK packages, please use:
|
|
6
|
+
|
|
7
|
+
- `@blimu/backend` - TypeScript SDK for Blimu API
|
|
8
|
+
- `@blimu/client` - Client SDK for Blimu
|
|
9
|
+
- `@blimu/nestjs` - NestJS integration for Blimu
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @blimu/backend
|
|
15
|
+
# or
|
|
16
|
+
npm install @blimu/client
|
|
17
|
+
# or
|
|
18
|
+
npm install @blimu/nestjs
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Learn More
|
|
22
|
+
|
|
23
|
+
Visit [https://blimu.com](https://blimu.com) for documentation and more information.
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "blimu",
|
|
3
|
+
"licenses": "MIT",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "Blimu - Authorization as a Service",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"types": "index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"index.js",
|
|
10
|
+
"index.d.ts",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/blimu/blimu-ts"
|
|
16
|
+
},
|
|
17
|
+
"author": "viniciusdacal",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"authorization",
|
|
21
|
+
"rbac",
|
|
22
|
+
"access-control",
|
|
23
|
+
"permissions"
|
|
24
|
+
],
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
}
|
|
28
|
+
}
|