@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.
Files changed (55) hide show
  1. package/LICENSE +109 -0
  2. package/README.md +41 -0
  3. package/dist/config.d.ts +151 -0
  4. package/dist/config.d.ts.map +1 -0
  5. package/dist/config.js +168 -0
  6. package/dist/config.js.map +1 -0
  7. package/dist/container.d.ts +20 -0
  8. package/dist/container.d.ts.map +1 -0
  9. package/dist/container.js +21 -0
  10. package/dist/container.js.map +1 -0
  11. package/dist/env.d.ts +28 -0
  12. package/dist/env.d.ts.map +1 -0
  13. package/dist/env.js +2 -0
  14. package/dist/env.js.map +1 -0
  15. package/dist/events.d.ts +39 -0
  16. package/dist/events.d.ts.map +1 -0
  17. package/dist/events.js +42 -0
  18. package/dist/events.js.map +1 -0
  19. package/dist/hooks.d.ts +19 -0
  20. package/dist/hooks.d.ts.map +1 -0
  21. package/dist/hooks.js +33 -0
  22. package/dist/hooks.js.map +1 -0
  23. package/dist/index.d.ts +21 -0
  24. package/dist/index.d.ts.map +1 -0
  25. package/dist/index.js +10 -0
  26. package/dist/index.js.map +1 -0
  27. package/dist/links.d.ts +169 -0
  28. package/dist/links.d.ts.map +1 -0
  29. package/dist/links.js +146 -0
  30. package/dist/links.js.map +1 -0
  31. package/dist/module.d.ts +36 -0
  32. package/dist/module.d.ts.map +1 -0
  33. package/dist/module.js +2 -0
  34. package/dist/module.js.map +1 -0
  35. package/dist/orchestration.d.ts +33 -0
  36. package/dist/orchestration.d.ts.map +1 -0
  37. package/dist/orchestration.js +2 -0
  38. package/dist/orchestration.js.map +1 -0
  39. package/dist/plugin.d.ts +89 -0
  40. package/dist/plugin.d.ts.map +1 -0
  41. package/dist/plugin.js +57 -0
  42. package/dist/plugin.js.map +1 -0
  43. package/dist/query.d.ts +91 -0
  44. package/dist/query.d.ts.map +1 -0
  45. package/dist/query.js +120 -0
  46. package/dist/query.js.map +1 -0
  47. package/dist/registry.d.ts +17 -0
  48. package/dist/registry.d.ts.map +1 -0
  49. package/dist/registry.js +31 -0
  50. package/dist/registry.js.map +1 -0
  51. package/dist/workflows.d.ts +118 -0
  52. package/dist/workflows.d.ts.map +1 -0
  53. package/dist/workflows.js +122 -0
  54. package/dist/workflows.js.map +1 -0
  55. 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
+ }