@alwatr/nitrobase-user-management 7.5.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.
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@alwatr/nitrobase-user-management",
3
+ "version": "7.5.0",
4
+ "description": "",
5
+ "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
+ "keywords": [
7
+ "user",
8
+ "user-management",
9
+ "database",
10
+ "storage",
11
+ "json",
12
+ "nosql",
13
+ "no-sql",
14
+ "data",
15
+ "data-storage",
16
+ "file",
17
+ "typescript",
18
+ "esm",
19
+ "alwatr"
20
+ ],
21
+ "type": "module",
22
+ "main": "./dist/main.cjs",
23
+ "module": "./dist/main.mjs",
24
+ "types": "./dist/main.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/main.d.ts",
28
+ "import": "./dist/main.mjs",
29
+ "require": "./dist/main.cjs"
30
+ }
31
+ },
32
+ "license": "AGPL-3.0-only",
33
+ "files": [
34
+ "**/*.{js,mjs,cjs,map,d.ts,html,md}",
35
+ "!demo/**/*"
36
+ ],
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/Alwatr/nitrobase",
43
+ "directory": "packages/user-management"
44
+ },
45
+ "homepage": "https://github.com/Alwatr/nitrobase/tree/next/packages/user-management#readme",
46
+ "bugs": {
47
+ "url": "https://github.com/Alwatr/nitrobase/issues"
48
+ },
49
+ "prettier": "@alwatr/prettier-config",
50
+ "scripts": {
51
+ "b": "yarn run build",
52
+ "w": "yarn run watch",
53
+ "c": "yarn run clean",
54
+ "cb": "yarn run clean && yarn run build",
55
+ "d": "yarn run build:es && yarn node",
56
+ "build": "yarn run build:ts & yarn run build:es",
57
+ "build:es": "nano-build --preset=module",
58
+ "build:ts": "tsc --build",
59
+ "watch": "yarn run watch:ts & yarn run watch:es",
60
+ "watch:es": "yarn run build:es --watch",
61
+ "watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
62
+ "clean": "rm -rfv dist *.tsbuildinfo"
63
+ },
64
+ "dependencies": {
65
+ "@alwatr/nanolib": "^5.2.1",
66
+ "@alwatr/nitrobase-engine": "^7.5.0",
67
+ "@alwatr/nitrobase-reference": "^7.5.0",
68
+ "@alwatr/nitrobase-types": "^7.5.0"
69
+ },
70
+ "devDependencies": {
71
+ "@alwatr/nano-build": "^5.0.0",
72
+ "@alwatr/prettier-config": "^5.0.0",
73
+ "@alwatr/tsconfig-base": "^5.0.0",
74
+ "@alwatr/type-helper": "^5.0.0",
75
+ "@types/node": "^22.9.0",
76
+ "typescript": "^5.6.3"
77
+ },
78
+ "gitHead": "cb82a2f1ffa090db44cf7476fe68a2e4d8b0f67a"
79
+ }