libmodulor 0.1.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/CHANGELOG.md +5 -0
- package/README.md +1485 -0
- package/dist/esm/index.js +1 -0
- package/docs/assets/trading-buy-asset-sequence-diagram.png +0 -0
- package/docs/assets/trading-target-mcp-server.png +0 -0
- package/docs/assets/trading-target-web-human.png +0 -0
- package/docs/assets/trading-target-web.png +0 -0
- package/package.json +111 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('Tic Tac... Tic Tac... Tic Tac... Coming soon !');
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "libmodulor",
|
|
3
|
+
"description": "An opinionated TypeScript library to create business oriented applications",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": "Chafik H'nini <chafik.hnini@gmail.com>",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"module": "./dist/esm/index.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/esm/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./cli": {
|
|
14
|
+
"import": "./dist/products/Wizard/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./locales/en": {
|
|
17
|
+
"import": "./dist/esm/i18n/locales/en.js"
|
|
18
|
+
},
|
|
19
|
+
"./locales/fr": {
|
|
20
|
+
"import": "./dist/esm/i18n/locales/fr.js"
|
|
21
|
+
},
|
|
22
|
+
"./node-mcp": {
|
|
23
|
+
"import": "./dist/esm/index.node-mcp.js"
|
|
24
|
+
},
|
|
25
|
+
"./node-test": {
|
|
26
|
+
"import": "./dist/esm/index.node-test.js"
|
|
27
|
+
},
|
|
28
|
+
"./node": {
|
|
29
|
+
"import": "./dist/esm/index.node.js"
|
|
30
|
+
},
|
|
31
|
+
"./react-web-pure": {
|
|
32
|
+
"import": "./dist/esm/index.react-web-pure.js"
|
|
33
|
+
},
|
|
34
|
+
"./react": {
|
|
35
|
+
"import": "./dist/esm/index.react.js"
|
|
36
|
+
},
|
|
37
|
+
"./rn": {
|
|
38
|
+
"import": "./dist/esm/index.rn.js"
|
|
39
|
+
},
|
|
40
|
+
"./std-jwt-manager-jose": {
|
|
41
|
+
"import": "./dist/esm/index.std-jwt-manager-jose.js"
|
|
42
|
+
},
|
|
43
|
+
"./uc-data-store-knex": {
|
|
44
|
+
"import": "./dist/esm/index.uc-data-store-knex.js"
|
|
45
|
+
},
|
|
46
|
+
"./vite": {
|
|
47
|
+
"import": "./dist/esm/index.vite.js"
|
|
48
|
+
},
|
|
49
|
+
"./web": {
|
|
50
|
+
"import": "./dist/esm/index.web.js"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@hono/node-server": "^1.13.7",
|
|
55
|
+
"@modelcontextprotocol/sdk": "^1.1.1",
|
|
56
|
+
"@stricli/core": "^1.1.0",
|
|
57
|
+
"buffer": "^6.0.3",
|
|
58
|
+
"cookie-parser": "^1.4.7",
|
|
59
|
+
"express": "^4.21.2",
|
|
60
|
+
"express-fileupload": "^1.5.1",
|
|
61
|
+
"fast-check": "^3.23.2",
|
|
62
|
+
"helmet": "^8.0.0",
|
|
63
|
+
"hono": "^4.6.16",
|
|
64
|
+
"inversify": "^6.2.1",
|
|
65
|
+
"jose": "^5.9.6",
|
|
66
|
+
"knex": "^3.1.0",
|
|
67
|
+
"pg": "^8.13.1",
|
|
68
|
+
"react": "^18.3.1",
|
|
69
|
+
"react-dom": "^18.3.1",
|
|
70
|
+
"reflect-metadata": "^0.2.2",
|
|
71
|
+
"sqlite3": "^5.1.7",
|
|
72
|
+
"typescript": "^5.7.3",
|
|
73
|
+
"vite": "^6.0.7"
|
|
74
|
+
},
|
|
75
|
+
"peerDependenciesMeta": {
|
|
76
|
+
"@hono/node-server": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"@modelcontextprotocol/sdk": {
|
|
80
|
+
"optional": true
|
|
81
|
+
},
|
|
82
|
+
"@stricli/core": {
|
|
83
|
+
"optional": true
|
|
84
|
+
},
|
|
85
|
+
"hono": {
|
|
86
|
+
"optional": true
|
|
87
|
+
},
|
|
88
|
+
"knex": {
|
|
89
|
+
"optional": true
|
|
90
|
+
},
|
|
91
|
+
"jose": {
|
|
92
|
+
"optional": true
|
|
93
|
+
},
|
|
94
|
+
"pg": {
|
|
95
|
+
"optional": true
|
|
96
|
+
},
|
|
97
|
+
"react": {
|
|
98
|
+
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"react-dom": {
|
|
101
|
+
"optional": true
|
|
102
|
+
},
|
|
103
|
+
"sqlite3": {
|
|
104
|
+
"optional": true
|
|
105
|
+
},
|
|
106
|
+
"vite": {
|
|
107
|
+
"optional": true
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"sideEffects": false
|
|
111
|
+
}
|