-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "web-shell-engine",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsgo -b ./tsconfig.json",
"watch-tsgo": "tsgo -b -w ./tsconfig.json",
"watch-webpack": "webpack -c ./examples/xterm.js/webpack.config.js -w",
"test": "vitest run --globals --dir test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tyriar/web-shell-engine.git"
},
"author": "Daniel Imms",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tyriar/web-shell-engine/issues"
},
"homepage": "https://github.com/Tyriar/web-shell-engine#readme",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^20.19.37",
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
"babel-loader": "^8.2.2",
"mocha": "^10.0.0",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.5",
"typescript": "5.9",
"vitest": "^0.25.8",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"xterm-headless": "^4.18.0"
},
"dependencies": {
"minimist": "^1.2.6"
}
}