@voyantjs/core 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/LICENSE +109 -0
- package/README.md +41 -0
- package/dist/config.d.ts +151 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +168 -0
- package/dist/config.js.map +1 -0
- package/dist/container.d.ts +20 -0
- package/dist/container.d.ts.map +1 -0
- package/dist/container.js +21 -0
- package/dist/container.js.map +1 -0
- package/dist/env.d.ts +28 -0
- package/dist/env.d.ts.map +1 -0
- package/dist/env.js +2 -0
- package/dist/env.js.map +1 -0
- package/dist/events.d.ts +39 -0
- package/dist/events.d.ts.map +1 -0
- package/dist/events.js +42 -0
- package/dist/events.js.map +1 -0
- package/dist/hooks.d.ts +19 -0
- package/dist/hooks.d.ts.map +1 -0
- package/dist/hooks.js +33 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -0
- package/dist/links.d.ts +169 -0
- package/dist/links.d.ts.map +1 -0
- package/dist/links.js +146 -0
- package/dist/links.js.map +1 -0
- package/dist/module.d.ts +36 -0
- package/dist/module.d.ts.map +1 -0
- package/dist/module.js +2 -0
- package/dist/module.js.map +1 -0
- package/dist/orchestration.d.ts +33 -0
- package/dist/orchestration.d.ts.map +1 -0
- package/dist/orchestration.js +2 -0
- package/dist/orchestration.js.map +1 -0
- package/dist/plugin.d.ts +89 -0
- package/dist/plugin.d.ts.map +1 -0
- package/dist/plugin.js +57 -0
- package/dist/plugin.js.map +1 -0
- package/dist/query.d.ts +91 -0
- package/dist/query.d.ts.map +1 -0
- package/dist/query.js +120 -0
- package/dist/query.js.map +1 -0
- package/dist/registry.d.ts +17 -0
- package/dist/registry.d.ts.map +1 -0
- package/dist/registry.js +31 -0
- package/dist/registry.js.map +1 -0
- package/dist/workflows.d.ts +118 -0
- package/dist/workflows.d.ts.map +1 -0
- package/dist/workflows.js +122 -0
- package/dist/workflows.js.map +1 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voyantjs/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "FSL-1.1-Apache-2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./env": {
|
|
12
|
+
"types": "./dist/env.d.ts",
|
|
13
|
+
"import": "./dist/env.js"
|
|
14
|
+
},
|
|
15
|
+
"./module": {
|
|
16
|
+
"types": "./dist/module.d.ts",
|
|
17
|
+
"import": "./dist/module.js"
|
|
18
|
+
},
|
|
19
|
+
"./hooks": {
|
|
20
|
+
"types": "./dist/hooks.d.ts",
|
|
21
|
+
"import": "./dist/hooks.js"
|
|
22
|
+
},
|
|
23
|
+
"./registry": {
|
|
24
|
+
"types": "./dist/registry.d.ts",
|
|
25
|
+
"import": "./dist/registry.js"
|
|
26
|
+
},
|
|
27
|
+
"./container": {
|
|
28
|
+
"types": "./dist/container.d.ts",
|
|
29
|
+
"import": "./dist/container.js"
|
|
30
|
+
},
|
|
31
|
+
"./events": {
|
|
32
|
+
"types": "./dist/events.d.ts",
|
|
33
|
+
"import": "./dist/events.js"
|
|
34
|
+
},
|
|
35
|
+
"./orchestration": {
|
|
36
|
+
"types": "./dist/orchestration.d.ts",
|
|
37
|
+
"import": "./dist/orchestration.js"
|
|
38
|
+
},
|
|
39
|
+
"./links": {
|
|
40
|
+
"types": "./dist/links.d.ts",
|
|
41
|
+
"import": "./dist/links.js"
|
|
42
|
+
},
|
|
43
|
+
"./query": {
|
|
44
|
+
"types": "./dist/query.d.ts",
|
|
45
|
+
"import": "./dist/query.js"
|
|
46
|
+
},
|
|
47
|
+
"./workflows": {
|
|
48
|
+
"types": "./dist/workflows.d.ts",
|
|
49
|
+
"import": "./dist/workflows.js"
|
|
50
|
+
},
|
|
51
|
+
"./plugin": {
|
|
52
|
+
"types": "./dist/plugin.d.ts",
|
|
53
|
+
"import": "./dist/plugin.js"
|
|
54
|
+
},
|
|
55
|
+
"./config": {
|
|
56
|
+
"types": "./dist/config.d.ts",
|
|
57
|
+
"import": "./dist/config.js"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"typescript": "^6.0.2",
|
|
63
|
+
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist"
|
|
67
|
+
],
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsc -p tsconfig.build.json",
|
|
73
|
+
"typecheck": "tsc --noEmit",
|
|
74
|
+
"lint": "biome check src/",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"clean": "rm -rf dist"
|
|
77
|
+
},
|
|
78
|
+
"main": "./dist/index.js",
|
|
79
|
+
"types": "./dist/index.d.ts"
|
|
80
|
+
}
|