-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "web-device-mux",
"version": "0.5.0",
"description": "A small library for managing connections to WebUSB, WebHID, and Web Serial devices from multiple tabs at the same time.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Cellivar/WebDeviceMux"
},
"author": "Cellivar Kangaroorat <cellivar.kangaroorat@gmail.com> (https://github.com/cellivar)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cellivar/WebDeviceMux/issues"
},
"homepage": "https://github.com/Cellivar/WebDeviceMux",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest --run",
"all": "npm run build && npm run lint && npm run test"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/web-device-mux.js",
"require": "./dist/web-device-mux.umd.csj",
"default": "./dist/web-device-mux.js"
},
"./readme": "./readme.md"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.9.0",
"@types/w3c-web-usb": "^1.0.10",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.9.0",
"https-localhost": "^4.7.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.6"
}
}