2018-07-22 22:34:35 +00:00
|
|
|
{
|
|
|
|
"name": "terminalizer",
|
2024-08-29 00:38:16 +00:00
|
|
|
"version": "0.12.0",
|
2018-11-16 15:29:54 +00:00
|
|
|
"description": "Record your terminal and generate animated gif images or share a web player",
|
2018-07-22 22:34:35 +00:00
|
|
|
"main": "bin/app.js",
|
|
|
|
"author": "Mohammad Fares <faressoft.com@gmail.com>",
|
|
|
|
"license": "MIT",
|
2023-07-08 09:19:52 +00:00
|
|
|
"homepage": "https://www.terminalizer.com",
|
2018-07-22 22:34:35 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/faressoft/terminalizer.git"
|
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"terminalizer": "bin/app.js"
|
|
|
|
},
|
2018-11-04 16:14:24 +00:00
|
|
|
"scripts": {
|
2022-09-05 18:54:57 +00:00
|
|
|
"dev": "NODE_ENV=development webpack --watch",
|
|
|
|
"build": "NODE_ENV=production webpack --progress",
|
2018-11-04 16:17:21 +00:00
|
|
|
"prepublish": "npm run build"
|
2018-11-04 16:14:24 +00:00
|
|
|
},
|
2018-07-24 14:17:27 +00:00
|
|
|
"keywords": [
|
|
|
|
"terminal",
|
|
|
|
"record",
|
|
|
|
"capture",
|
|
|
|
"tty",
|
|
|
|
"shot",
|
|
|
|
"bash",
|
|
|
|
"powershell",
|
|
|
|
"gif",
|
|
|
|
"animated",
|
|
|
|
"generate",
|
|
|
|
"theme",
|
|
|
|
"colors",
|
|
|
|
"font",
|
|
|
|
"repeat",
|
|
|
|
"command-line",
|
|
|
|
"shell",
|
|
|
|
"zsh",
|
|
|
|
"bash-profile",
|
|
|
|
"render",
|
|
|
|
"pty"
|
|
|
|
],
|
2018-07-22 22:34:35 +00:00
|
|
|
"dependencies": {
|
2024-08-29 00:37:59 +00:00
|
|
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.11.14",
|
2020-04-18 19:12:35 +00:00
|
|
|
"async": "^2.6.3",
|
|
|
|
"async-promises": "^0.2.2",
|
2024-08-29 00:37:59 +00:00
|
|
|
"axios": "^1.7.5",
|
2020-04-18 19:12:35 +00:00
|
|
|
"chalk": "^2.4.2",
|
2018-07-22 22:34:35 +00:00
|
|
|
"death": "^1.1.0",
|
2020-04-18 19:12:35 +00:00
|
|
|
"deepmerge": "^2.2.1",
|
2023-07-08 10:05:47 +00:00
|
|
|
"electron": "^25.2.0",
|
2018-07-22 22:34:35 +00:00
|
|
|
"fs-extra": "^5.0.0",
|
|
|
|
"gif-encoder": "^0.6.1",
|
2020-04-18 19:12:35 +00:00
|
|
|
"inquirer": "^6.5.2",
|
|
|
|
"js-yaml": "^3.13.1",
|
|
|
|
"lodash": "^4.17.15",
|
2018-07-22 22:34:35 +00:00
|
|
|
"performance-now": "^2.1.0",
|
2020-04-18 19:12:35 +00:00
|
|
|
"pngjs": "^3.4.0",
|
|
|
|
"progress": "^2.0.3",
|
2018-11-25 12:50:57 +00:00
|
|
|
"require-dir": "^1.1.0",
|
2018-07-22 22:34:35 +00:00
|
|
|
"string-argv": "0.0.2",
|
2023-07-09 09:59:16 +00:00
|
|
|
"tmp": "^0.2.1",
|
2024-08-29 00:37:59 +00:00
|
|
|
"uuid": "^10.0.0",
|
2023-07-08 10:05:47 +00:00
|
|
|
"yargs": "^17.7.2"
|
2018-11-04 16:13:50 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-07 15:50:10 +00:00
|
|
|
"ajv": "^6.12.6",
|
2022-09-05 18:54:57 +00:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
2023-07-07 15:50:10 +00:00
|
|
|
"css-loader": "^4.3.0",
|
2020-04-18 19:12:35 +00:00
|
|
|
"jquery": "^3.4.1",
|
2023-07-07 15:50:10 +00:00
|
|
|
"mini-css-extract-plugin": "^2.7.6",
|
2020-04-18 19:12:35 +00:00
|
|
|
"terminalizer-player": "^0.4.1",
|
2023-07-07 15:50:10 +00:00
|
|
|
"webpack": "^5.88.1",
|
2022-09-05 18:54:57 +00:00
|
|
|
"webpack-cli": "^4.10.0",
|
2024-08-29 00:37:59 +00:00
|
|
|
"xterm": "^v3.14.5"
|
2018-07-22 22:34:35 +00:00
|
|
|
}
|
|
|
|
}
|