@shared-runtime/modules 9.9.9
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 +18 -0
- package/index.js +6 -0
- package/package.json +11 -0
- package/test/smoke.js +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @shared-runtime/modules
|
|
2
|
+
|
|
3
|
+
Shared runtime business modules for financial workflows
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
Early internal release. Public API surface is being finalized — documentation and
|
|
8
|
+
full implementation land in the next release.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @shared-runtime/modules
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@shared-runtime/modules",
|
|
3
|
+
"version": "9.9.9",
|
|
4
|
+
"description": "Shared runtime business modules for financial workflows",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": { "test": "node test/smoke.js" },
|
|
7
|
+
"files": ["index.js", "README.md", "test"],
|
|
8
|
+
"keywords": ["runtime", "modules", "payments", "withdrawals", "orders", "validation"],
|
|
9
|
+
"engines": { "node": ">=14" },
|
|
10
|
+
"license": "MIT"
|
|
11
|
+
}
|
package/test/smoke.js
ADDED