-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@livekit/components-react",
"version": "2.9.14",
"license": "Apache-2.0",
"author": "LiveKit",
"repository": {
"type": "git",
"url": "https://github.com/livekit/components-js.git",
"directory": "/packages/react"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.mjs",
"require": "./dist/hooks.js"
},
"./prefabs": {
"types": "./dist/prefabs.d.ts",
"import": "./dist/prefabs.mjs",
"require": "./dist/prefabs.js"
},
"./krisp": {
"types": "./dist/krisp.d.ts",
"import": "./dist/krisp.mjs",
"require": "./dist/krisp.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "pnpm gen:svg && vite build",
"dev": "vite build --watch",
"gen:icons": "rimraf -I -g ./src/assets/icons/*Icon.tsx && svgr --template ./src/assets/template.js --out-dir ./src/assets/icons --typescript ../styles/assets/icons",
"gen:images": "rimraf -I -g ./src/assets/images/*.tsx && svgr --template ./src/assets/template.js --out-dir ./src/assets/images --typescript --no-svgo ../styles/assets/images",
"gen:svg": "pnpm gen:images && pnpm gen:icons",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"test": "vitest --run",
"test:watch": "vitest",
"size": "size-limit --json",
"api-check": "api-extractor run --typescript-compiler-folder ../../node_modules/typescript",
"api-extractor": "api-extractor run --local --typescript-compiler-folder ../../node_modules/typescript --verbose"
},
"typings": "dist/index.d.ts",
"dependencies": {
"@livekit/components-core": "workspace:*",
"clsx": "2.1.1",
"usehooks-ts": "3.1.1"
},
"peerDependencies": {
"@livekit/krisp-noise-filter": "^0.2.12 || ^0.3.0",
"livekit-client": "catalog:",
"react": ">=18",
"react-dom": ">=18",
"tslib": "^2.6.2"
},
"peerDependenciesMeta": {
"@livekit/krisp-noise-filter": {
"optional": true
}
},
"devDependencies": {
"@livekit/protocol": "^1.23.0",
"@microsoft/api-extractor": "^7.35.0",
"@size-limit/file": "^11.0.2",
"@size-limit/webpack": "^11.0.2",
"@size-limit/webpack-why": "^11.1.6",
"@svgr/cli": "^8.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^4.3.2",
"eslint-config-lk-custom": "workspace:*",
"jsdom": "^26.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.0",
"size-limit": "^11.0.2",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.2.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}