-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "sora-js-sdk",
"version": "2025.1.0-canary.0",
"description": "WebRTC SFU Sora JavaScript SDK",
"main": "dist/sora.js",
"module": "dist/sora.mjs",
"exports": {
".": {
"types": "./dist/sora.d.ts",
"import": "./dist/sora.mjs",
"require": "./dist/sora.mjs"
}
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite --config examples/vite.config.mjs",
"e2e-dev": "vite --config e2e-tests/vite.config.mjs",
"e2e-test": "pnpm build && playwright test --project=chromium",
"lint": "biome lint",
"fmt": "biome format --write",
"check": "tsc --noEmit",
"test": "vitest run",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiguredo/sora-js-sdk.git"
},
"author": "Shiguredo Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://discord.gg/shiguredo"
},
"homepage": "https://github.com/shiguredo/sora-js-sdk#readme",
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.1",
"jsdom": "25.0.1",
"tslib": "2.8.1",
"typedoc": "0.27.5",
"typescript": "5.7.2",
"vite": "6.0.5",
"vite-plugin-dts": "4.4.0",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}