-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.81 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.81 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
{
"name": "@livekit/components-core",
"version": "0.12.2",
"license": "Apache-2.0",
"author": "LiveKit",
"repository": {
"type": "git",
"url": "https://github.com/livekit/components-js.git",
"directory": "/packages/core"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup --onSuccess \"tsc --declaration --emitDeclarationOnly\"",
"dev": "tsup --watch --onSuccess \"tsc --declaration --emitDeclarationOnly\"",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"test": "vitest --run",
"test:watch": "vitest",
"size": "size-limit",
"api-check": "echo \"🚧 api-checks for core are disabled!\" #TODO cleanup core api then activate api checks. 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": {
"@floating-ui/dom": "1.6.13",
"loglevel": "1.9.1",
"rxjs": "7.8.2"
},
"peerDependencies": {
"livekit-client": "catalog:",
"tslib": "^2.6.2"
},
"devDependencies": {
"@livekit/components-styles": "workspace:*",
"@livekit/protocol": "^1.36.1",
"@microsoft/api-extractor": "^7.36.0",
"@size-limit/file": "^11.0.2",
"@size-limit/webpack": "^11.0.2",
"eslint-config-lk-custom": "workspace:*",
"size-limit": "^11.0.2",
"tsup": "^8.0.0",
"typescript": "5.7.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}