@luketandjung/ariadne 0.1.0 → 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 (1) hide show
  1. package/package.json +18 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luketandjung/ariadne",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "description": "A composable, structured, effectful agent SDK built off the backs of the Dedalus Labs backend",
6
6
  "main": "./dist/index.cjs",
@@ -31,5 +31,21 @@
31
31
  "type": "git",
32
32
  "url": "git+https://github.com/LukeTandjung/ariadne.git"
33
33
  },
34
- "homepage": "https://github.com/LukeTandjung/ariadne#readme"
34
+ "homepage": "https://github.com/LukeTandjung/ariadne#readme",
35
+ "publishConfig": {
36
+ "access": "public",
37
+ "exports": {
38
+ "./package.json": "./package.json",
39
+ ".": {
40
+ "import": {
41
+ "types": "./dist/index.d.ts",
42
+ "default": "./dist/index.js"
43
+ },
44
+ "require": {
45
+ "types": "./dist/index.d.ts",
46
+ "default": "./dist/index.cjs"
47
+ }
48
+ }
49
+ }
50
+ }
35
51
  }