-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"type": "module",
"name": "@MarketingPipeline/terminojs",
"version": "2.0.0",
"description": "A JavaScript library for creating web based terminals (with your own custom commands!) - great for creating apps, games & animations in a terminal like enviorement in the browsers",
"main": "dist/termino.min.js",
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/termino.js --outfile=dist/termino.min.js --bundle --minify",
"dev": "esbuild src/termino.js --outfile=dist/termino.min.js --bundle --watch"
},
"keywords": [
"terminal",
"web-terminal",
"web terminal",
"javascript",
"terminal-animations",
"browser",
"js",
"async",
"await",
"promise-based",
"terminal-games",
"cli",
"command-line",
"console",
"pty",
"shell",
"ssh",
"styles",
"terminal-emulator",
"terminal",
"tty",
"web-shell",
"bash-emulator",
"vt100"
],
"author": "https://github.com/MarketingPipeline",
"license": "MIT",
"repository": "github:MarketingPipeline/Termino.js",
"devDependencies": {
"esbuild": "^0.15.5"
},
"bugs": {
"url": "https://github.com/MarketingPipeline/Termino.js/issues"
},
"homepage": "https://github.com/MarketingPipeline/Termino.js#readme"
}