Skip to content

Commit a5a9c12

Browse files
authored
Added package.json ⚡
1 parent 912b03e commit a5a9c12

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

package.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "@MarketingPipeline/terminojs",
3+
"version": "1.0.0",
4+
"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",
5+
"main": "dist/termino.min.js",
6+
"files": [
7+
"dist"
8+
],
9+
"scripts": {
10+
"build": "esbuild src/termino.js --outfile=dist/termino.min.js --bundle --minify",
11+
"dev": "esbuild src/termino.js --outfile=dist/termino.min.js --bundle --watch"
12+
},
13+
"keywords": [
14+
"terminal",
15+
"web-terminal",
16+
"web terminal",
17+
"javascript",
18+
"terminal-animations",
19+
"browser",
20+
"js",
21+
"async",
22+
"await",
23+
"promise-based",
24+
"terminal-games",
25+
"cli",
26+
"command-line",
27+
"console",
28+
"pty",
29+
"shell",
30+
"ssh",
31+
"styles",
32+
"terminal-emulator",
33+
"terminal",
34+
"tty",
35+
"web-shell",
36+
"bash-emulator",
37+
"vt100"
38+
],
39+
"author": "https://github.com/MarketingPipeline",
40+
"license": "MIT",
41+
"repository": "github:MarketingPipeline/Termino.js",
42+
"devDependencies": {
43+
"esbuild": "^0.15.5"
44+
},
45+
"bugs": {
46+
"url": "https://github.com/MarketingPipeline/Termino.js/issues"
47+
},
48+
"homepage": "https://github.com/MarketingPipeline/Termino.js#readme"
49+
}

0 commit comments

Comments
 (0)