@assistant-ui/react 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@assistant-ui/react",
3
+ "version": "0.0.1",
4
+ "license": "MIT",
5
+ "exports": {
6
+ ".": {
7
+ "import": {
8
+ "types": "./dist/index.d.mts",
9
+ "default": "./dist/index.mjs"
10
+ },
11
+ "require": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ }
15
+ }
16
+ },
17
+ "source": "./src/index.ts",
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "build": "tsup src/index.ts --format cjs,esm --dts"
28
+ },
29
+ "dependencies": {
30
+ "@radix-ui/primitive": "^1.0.1",
31
+ "@radix-ui/react-compose-refs": "^1.0.1",
32
+ "@radix-ui/react-primitive": "^1.0.3",
33
+ "@radix-ui/react-slot": "^1.0.2",
34
+ "ai": "^3.1.1",
35
+ "use-sync-external-store": "^1.2.2"
36
+ },
37
+ "peerDependencies": {
38
+ "@types/react": "*",
39
+ "react": "^18"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "@types/react": {
43
+ "optional": true
44
+ }
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "devDependencies": {
50
+ "@assistant-ui/tsconfig": "*",
51
+ "@types/use-sync-external-store": "^0.0.6",
52
+ "tsup": "^8.0.2"
53
+ },
54
+ "homepage": "https://assistant-ui.com/",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "git+https://github.com/Yonom/assistant-ui.git"
58
+ },
59
+ "bugs": {
60
+ "url": "https://github.com/Yonom/assistant-ui/issues"
61
+ }
62
+ }