-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.53 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.53 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
99
100
101
102
103
104
{
"name": "@runwayml/avatars-react",
"version": "0.13.0",
"description": "React SDK for real-time AI avatar interactions with GWM-1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./api": {
"import": {
"types": "./dist/api.d.ts",
"default": "./dist/api.js"
},
"require": {
"types": "./dist/api.d.cts",
"default": "./dist/api.cjs"
}
},
"./styles.css": "./dist/styles.css"
},
"typesVersions": {
"*": {
"api": ["./dist/api.d.ts"]
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICES"
],
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "mkdir -p dist && cp src/styles.css dist/styles.css && tsup --watch",
"build": "bun run clean && tsup",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format --write src/",
"check": "biome check src/",
"typecheck": "tsc --noEmit",
"example:link": "bun run build && bun link && cd examples/react-router && bun link @runwayml/avatars-react",
"example:dev": "bun run example:link && cd examples/react-router && bun run dev",
"playground:dev": "cd playground && bun install && bun run dev"
},
"keywords": [
"runwayml",
"avatar",
"ai",
"react",
"hooks",
"realtime",
"gwm-1",
"video",
"webrtc",
"streaming"
],
"author": "RunwayML",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/runwayml/avatars-sdk-react.git"
},
"bugs": {
"url": "https://github.com/runwayml/avatars-sdk-react/issues"
},
"homepage": "https://github.com/runwayml/avatars-sdk-react#readme",
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"livekit-client": "^2.17.0",
"@livekit/components-react": "^2.9.19"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "^1.3.7",
"@types/jsdom": "^28.0.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"jsdom": "^29.0.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^4.0.0"
}
}