mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 20:54:21 +01:00
Bumps [file-saver](https://github.com/eligrey/FileSaver.js) from 2.0.2 to 2.0.5. - [Release notes](https://github.com/eligrey/FileSaver.js/releases) - [Changelog](https://github.com/eligrey/FileSaver.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/eligrey/FileSaver.js/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"name": "ttyd",
|
|
"version": "1.0.0",
|
|
"description": "Share your terminal over the web",
|
|
"repository": {
|
|
"url": "git@github.com:tsl0922/ttyd.git",
|
|
"type": "git"
|
|
},
|
|
"author": "Shuanglei Tao <tsl0922@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prestart": "gulp clean",
|
|
"start": "webpack-dev-server",
|
|
"build": "NODE_ENV=production webpack && gulp",
|
|
"check": "gts check",
|
|
"fix": "gts fix"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.ts": [
|
|
"gts fix",
|
|
"git add"
|
|
],
|
|
"src/**/*.scss": [
|
|
"scssfmt",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "^6.4.0",
|
|
"css-loader": "^5.0.1",
|
|
"gts": "^1.1.2",
|
|
"gulp": "^4.0.2",
|
|
"gulp-clean": "^0.4.0",
|
|
"gulp-gzip": "^1.4.2",
|
|
"gulp-inline-source": "^4.0.0",
|
|
"gulp-rename": "^2.0.0",
|
|
"html-webpack-plugin": "^4.5.0",
|
|
"husky": "^4.3.0",
|
|
"lint-staged": "^10.5.3",
|
|
"mini-css-extract-plugin": "^1.3.0",
|
|
"node-sass": "^5.0.0",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
|
"sass-loader": "^10.1.0",
|
|
"scssfmt": "^1.0.7",
|
|
"style-loader": "^2.0.0",
|
|
"terser-webpack-plugin": "^4.2.3",
|
|
"through2": "^4.0.2",
|
|
"ts-loader": "^8.0.11",
|
|
"tslint": "^6.1.3",
|
|
"tslint-loader": "^3.5.4",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "4.44.2",
|
|
"webpack-cli": "^4.2.0",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-merge": "^5.5.0"
|
|
},
|
|
"dependencies": {
|
|
"backoff": "^2.5.0",
|
|
"decko": "^1.2.0",
|
|
"file-saver": "^2.0.5",
|
|
"preact": "^10.5.7",
|
|
"whatwg-fetch": "^3.5.0",
|
|
"xterm": "^4.9.0",
|
|
"xterm-addon-fit": "^0.4.0",
|
|
"xterm-addon-web-links": "^0.4.0",
|
|
"xterm-addon-webgl": "^0.9.0",
|
|
"zmodem.js": "^0.1.10"
|
|
}
|
|
}
|