@atzentis/ai-react 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/dist/index.cjs ADDED
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ // src/index.ts
4
+ var VERSION = "0.0.1";
5
+
6
+ exports.VERSION = VERSION;
7
+ //# sourceMappingURL=index.cjs.map
8
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;AACO,IAAM,OAAA,GAAU","file":"index.cjs","sourcesContent":["// @atzentis/ai-react - React bindings for Atzentis AI SDK\nexport const VERSION = '0.0.1';\n"]}
@@ -0,0 +1,3 @@
1
+ declare const VERSION = "0.0.1";
2
+
3
+ export { VERSION };
@@ -0,0 +1,3 @@
1
+ declare const VERSION = "0.0.1";
2
+
3
+ export { VERSION };
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // src/index.ts
2
+ var VERSION = "0.0.1";
3
+
4
+ export { VERSION };
5
+ //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AACO,IAAM,OAAA,GAAU","file":"index.js","sourcesContent":["// @atzentis/ai-react - React bindings for Atzentis AI SDK\nexport const VERSION = '0.0.1';\n"]}
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@atzentis/ai-react",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "sideEffects": false,
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": {
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/index.d.cts",
18
+ "default": "./dist/index.cjs"
19
+ }
20
+ }
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md"
25
+ ],
26
+ "peerDependencies": {
27
+ "react": ">=18.0.0",
28
+ "@atzentis/ai-sdk": "0.1.0"
29
+ },
30
+ "devDependencies": {
31
+ "react": "^19.0.0",
32
+ "@types/react": "^19.0.0",
33
+ "tsup": "^8.3.0",
34
+ "typescript": "^5.7.0",
35
+ "vitest": "^2.1.0",
36
+ "@atzentis/ai-sdk": "0.1.0"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "dev": "tsup --watch",
41
+ "test": "vitest run",
42
+ "test:watch": "vitest",
43
+ "typecheck": "tsc --noEmit"
44
+ }
45
+ }