-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.6 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
{
"name": "gritty",
"version": "10.2.1",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "Web terminal emulator",
"bin": {
"gritty": "bin/gritty.js"
},
"main": "server/gritty.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudcmd/gritty.git"
},
"imports": {
"#gritty/client": "./client/gritty.js",
"#gritty/server": "./server/gritty.js"
},
"scripts": {
"start": "madrun start",
"start:dev": "madrun start:dev",
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"watch:test": "madrun watch:test",
"watcher": "madrun watcher",
"build-progress": "madrun build-progress",
"6to5:client": "madrun 6to5:client",
"6to5:client:dev": "madrun 6to5:client:dev",
"watch:client": "madrun watch:client",
"watch:client:dev": "madrun watch:client:dev",
"wisdom": "madrun wisdom",
"build": "madrun build",
"build:start": "madrun build:start",
"build:start:dev": "madrun build:start:dev",
"build:client": "madrun build:client",
"build:client:dev": "madrun build:client:dev",
"watch:lint": "madrun watch:lint",
"report": "madrun report",
"coverage": "madrun coverage",
"test": "madrun test"
},
"keywords": [
"console",
"terminal",
"emulator",
"express"
],
"dependencies": {
"currify": "^4.0.0",
"debug": "^4.0.1",
"express": "^5.2.1",
"router": "^2.2.0",
"node-pty": "^1.2.0-beta.2",
"socket.io": "^4.8.1",
"squad": "^3.0.0",
"string-to-argv": "^1.0.0",
"wraptile": "^3.0.0",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@iocmd/wait": "^2.1.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"babel-loader": "^10.0.0",
"clean-css-loader": "^4.1.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^8.0.0",
"css-modules-require-hook": "^4.0.6",
"es6-promisify": "^7.0.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.1.2",
"json-loader": "^0.5.4",
"madrun": "^13.0.1",
"nodemon": "^3.0.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"putout": "^42.4.2",
"request": "^2.81.0",
"serve-once": "^3.0.0",
"socket.io-client": "^4.0.0",
"style-loader": "^4.0.0",
"superc8": "^12.3.1",
"supertape": "^12.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}