anbaric 1.0.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 (2) hide show
  1. package/package.json +18 -0
  2. package/src/index.ts +4 -0
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "anbaric",
3
+ "version": "1.0.0",
4
+ "description": "Everything needed to write an Anbaric app: state machines, jobs, document and secret stores, local in-memory implementations and the Anbaric Cloud clients",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "src/index.ts",
8
+ "types": "src/index.ts",
9
+ "files": [
10
+ "src"
11
+ ],
12
+ "dependencies": {
13
+ "anbaric-cloud": "^1.0.0",
14
+ "anbaric-data-store": "^1.0.0",
15
+ "anbaric-state-machine": "^1.0.0",
16
+ "anbaric-tsapi": "^1.0.0"
17
+ }
18
+ }
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ export * from "anbaric-tsapi";
2
+ export * from "anbaric-state-machine";
3
+ export * from "anbaric-data-store";
4
+ export * from "anbaric-cloud";