-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
{
"name": "@copilotlive/react-sdk",
"version": "1.1.2",
"homepage": "https://github.com/CopilotLive/react-sdk",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/CopilotLive/react-sdk.git"
},
"keywords": [
"copilot",
"sdk",
"react",
"chatbot"
],
"author": "Raj pratap Singh Jadon",
"license": "MIT",
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.6",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"rxjs": "^7.8.2"
}
}