forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@copilotkit/react-ui",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.15.0",
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": "./dist/index.js",
"./styles.css": "./dist/index.css"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch --no-splitting",
"test": "jest",
"check-types": "tsc --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/react": "^18.2.5",
"@types/react-syntax-highlighter": "^15.5.7",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"jest": "^29.6.4",
"postcss": "^8.4.20",
"react": "^18.2.0",
"tailwind-config": "workspace:*",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"tsconfig": "workspace:*",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@copilotkit/shared": "workspace:*",
"@copilotkit/react-core": "workspace:*",
"@heroicons/react": "^2.0.18",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.6",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"nanoid": "^4.0.2",
"next": "^13.4.1",
"next-themes": "^0.2.1",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.5.2",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwind-merge": "^1.13.2"
}
}