-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "linux-browser-shell",
"version": "0.1.0",
"contributors": [
"bleeptrack <[email protected]> (https://bleeptrack.de)",
"blinry <[email protected]> (https://blinry.org)"
],
"repository": "github:git-learning-game/linux-browser-shell",
"type": "module",
"main": "./dist/linux-browser-shell.umd.cjs",
"module": "./dist/linux-browser-shell.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/linux-browser-shell.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/linux-browser-shell.umd.cjs"
}
}
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"scripts": {
"prepare": "vite build",
"test": "vitest"
},
"dependencies": {
"@xterm/addon-fit": "^0.9.0-beta.1",
"async-mutex": "^0.4.0",
"xterm": "^5.3.0"
},
"devDependencies": {
"@rollup/plugin-legacy": "^3.0.1",
"@vitest/browser": "^0.34.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.4",
"webdriverio": "^8.16.6"
}
}