-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 1.1 KB
/
package.json
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
{
"name": "realtime-ai-react",
"version": "0.2.2",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rtvi-ai/rtvi-client-web.git"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "parcel build --no-cache",
"dev": "parcel watch",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"parcel": "^2.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"realtime-ai": "*",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"realtime-ai": "*"
},
"dependencies": {
"jotai": "^2.9.0"
}
}