-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "agora-ui-kit",
"private": false,
"version": "0.0.2",
"type": "module",
"main": "dist/agora-ui-kit.min.js",
"module": "dist/agora-ui-kit.esm.js",
"unpkg": "dist/agora-ui-kit.min.js",
"browser": "dist/agora-ui-kit.min.js",
"types": "dist/main.d.ts",
"exports": {
"import": "dist/agora-ui-kit.esm.js",
"require": "dist/agora-ui-kit.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"bundle": "tsx ./esbuild.ts && tsc src/main.tsx --declaration --emitDeclarationOnly --declarationDir dist --noCheck",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"agora-react-uikit": "^1.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "0.21.5",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
},
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"agora",
"agora-sdk",
"agora-video",
"video-call"
],
"author": {
"name": "Nifemi Sobowale",
"email": "nifemisobowale@gmail.com"
},
"files": [
"dist/agora-ui-kit.cjs",
"dist/main.d.ts",
"dist/agora-ui-kit.esm.js",
"dist/agora-ui-kit.min.js",
"package.json",
"README.md",
"LICENSE"
],
"license": "MIT"
}