@deessejs/functions 0.0.1 → 0.0.3
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/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +70 -70
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -14,5 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api"), exports);
|
|
18
|
+
__exportStar(require("./api/types"), exports);
|
|
17
19
|
__exportStar(require("./functions"), exports);
|
|
18
20
|
__exportStar(require("./types"), exports);
|
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deessejs/functions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A powerful utility library for building type-safe APIs and functions with context management",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"module": "dist/index.esm.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.esm.js",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./api": {
|
|
15
|
+
"import": "./dist/api.esm.js",
|
|
16
|
+
"require": "./dist/api.js",
|
|
17
|
+
"types": "./dist/api.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./checks": {
|
|
20
|
+
"import": "./dist/checks.esm.js",
|
|
21
|
+
"require": "./dist/checks.js",
|
|
22
|
+
"types": "./dist/checks.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./context": {
|
|
25
|
+
"import": "./dist/context.esm.js",
|
|
26
|
+
"require": "./dist/context.js",
|
|
27
|
+
"types": "./dist/context.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./errors": {
|
|
30
|
+
"import": "./dist/errors.esm.js",
|
|
31
|
+
"require": "./dist/errors.js",
|
|
32
|
+
"types": "./dist/errors.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./events": {
|
|
35
|
+
"import": "./dist/events.esm.js",
|
|
36
|
+
"require": "./dist/events.js",
|
|
37
|
+
"types": "./dist/events.d.ts"
|
|
38
|
+
},
|
|
39
|
+
"./functions": {
|
|
40
|
+
"import": "./dist/functions.esm.js",
|
|
41
|
+
"require": "./dist/functions.js",
|
|
42
|
+
"types": "./dist/functions.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./types": {
|
|
45
|
+
"import": "./dist/types.esm.js",
|
|
46
|
+
"require": "./dist/types.js",
|
|
47
|
+
"types": "./dist/types.d.ts"
|
|
48
|
+
}
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
"dist/**/*",
|
|
52
|
+
"README.md",
|
|
53
|
+
"LICENSE"
|
|
54
54
|
],
|
|
55
55
|
"scripts": {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
"build": "tsc",
|
|
57
|
+
"build:watch": "tsc --watch",
|
|
58
|
+
"prepublishOnly": "npm run build",
|
|
59
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
60
|
+
"lint": "eslint src --ext .ts",
|
|
61
|
+
"lint:fix": "eslint src --ext .ts --fix"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
64
|
+
"typescript",
|
|
65
|
+
"api",
|
|
66
|
+
"functions",
|
|
67
|
+
"context",
|
|
68
|
+
"validation",
|
|
69
|
+
"zod",
|
|
70
|
+
"type-safe",
|
|
71
|
+
"utility"
|
|
72
72
|
],
|
|
73
73
|
"author": "Votre Nom",
|
|
74
74
|
"license": "MIT",
|
|
75
75
|
"repository": {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
"type": "git",
|
|
77
|
+
"url": "https://github.com/votre-organisation/deesse-api.git",
|
|
78
|
+
"directory": "packages/functions"
|
|
79
79
|
},
|
|
80
80
|
"bugs": {
|
|
81
|
-
|
|
81
|
+
"url": "https://github.com/votre-organisation/deesse-api/issues"
|
|
82
82
|
},
|
|
83
83
|
"homepage": "https://github.com/votre-organisation/deesse-api#readme",
|
|
84
84
|
"engines": {
|
|
85
|
-
|
|
85
|
+
"node": ">=16.0.0"
|
|
86
86
|
},
|
|
87
87
|
"packageManager": "pnpm@10.11.1",
|
|
88
88
|
"dependencies": {
|
|
89
|
-
|
|
89
|
+
"zod": "^4.1.12"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
92
|
+
"@types/node": "^20.0.0",
|
|
93
|
+
"typescript": "^5.0.0",
|
|
94
|
+
"eslint": "^8.0.0",
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
96
|
+
"@typescript-eslint/parser": "^6.0.0"
|
|
97
97
|
}
|
|
98
|
-
|
|
98
|
+
}
|