@nwire/runtime 0.11.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/LICENSE +21 -0
- package/dist/capability.d.ts +68 -0
- package/dist/capability.js +31 -0
- package/dist/framework-hooks.d.ts +110 -0
- package/dist/framework-hooks.js +39 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +14 -0
- package/dist/runtime.d.ts +402 -0
- package/dist/runtime.js +588 -0
- package/dist/sink.d.ts +54 -0
- package/dist/sink.js +13 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nwire/runtime",
|
|
3
|
+
"version": "0.11.0",
|
|
4
|
+
"description": "Nwire — envelope-execution substrate. Dispatch + emit + when + sink + capability registry. Extracted from @nwire/app for 0.11. Standalone usable without the App layer.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"capability",
|
|
7
|
+
"dispatch",
|
|
8
|
+
"nwire",
|
|
9
|
+
"runtime"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@nwire/container": "0.11.0",
|
|
31
|
+
"@nwire/handler": "0.11.0",
|
|
32
|
+
"@nwire/logger": "0.11.0",
|
|
33
|
+
"@nwire/messages": "0.11.0",
|
|
34
|
+
"@nwire/envelope": "0.11.0",
|
|
35
|
+
"@nwire/hooks": "0.11.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^22.19.9",
|
|
39
|
+
"typescript": "^5.9.3",
|
|
40
|
+
"vitest": "^4.0.18"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc && node ../../scripts/fix-dist-extensions.mjs dist",
|
|
44
|
+
"dev": "tsc --watch",
|
|
45
|
+
"typecheck": "tsc --noEmit"
|
|
46
|
+
}
|
|
47
|
+
}
|