mikulogin 1.0.0

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Paket utama Mikulogin.
3
+ * Re-export dari @mikulogin/core dan @mikulogin/adapter-prisma untuk kemudahan penggunaan.
4
+ */
5
+ export * from "@mikulogin/core";
6
+ export * from "@mikulogin/adapter-prisma";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,cAAc,iBAAiB,CAAC;AAGhC,cAAc,2BAA2B,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Paket utama Mikulogin.
3
+ * Re-export dari @mikulogin/core dan @mikulogin/adapter-prisma untuk kemudahan penggunaan.
4
+ */
5
+ // Ekspor seluruh tipe data dan utilitas dari @mikulogin/core
6
+ export * from "@mikulogin/core";
7
+ // Ekspor PrismaAdapter dari @mikulogin/adapter-prisma
8
+ export * from "@mikulogin/adapter-prisma";
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,6DAA6D;AAC7D,cAAc,iBAAiB,CAAC;AAEhC,sDAAsD;AACtD,cAAc,2BAA2B,CAAC"}
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "mikulogin",
3
+ "version": "1.0.0",
4
+ "description": "Framework autentikasi Next.js modular dengan arsitektur Bring Your Own Database (BYOD). Paket utama yang mengekspor modul core dan adapter.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "default": "./dist/index.js"
20
+ }
21
+ },
22
+ "dependencies": {
23
+ "@mikulogin/core": "^1.0.0",
24
+ "@mikulogin/adapter-prisma": "^1.0.0"
25
+ },
26
+ "scripts": {
27
+ "build": "tsc"
28
+ },
29
+ "keywords": [
30
+ "mikulogin",
31
+ "auth",
32
+ "authentication",
33
+ "nextjs",
34
+ "prisma",
35
+ "byod"
36
+ ],
37
+ "license": "ISC"
38
+ }