85d2225e0c
* Fix loading within the CLI * Remove app * Remove promise handle * Add initial travis file * Add libxkbfile dependency * Add libxkbfile-dev * Add build script * Fix malformed bash statement * Remove yarn from script * Improve build script * Extract upx before usage * Only run upx if on linux * Ensure resource directory exists * Pack runnable binary * Export binary with platform * Improve build process * Install upx before running install script * Update typescript version before running nexe * Add os.release() function for multi-platform support * Update travis.yml to improve deployment * Add on CI * Update to v1.31.0 * Add libsecret * Update build target * Skip cleanup * Fix built-in extensions * Add basics for apps * Create custom DNS server * Fix forking within CLI. Fixes TS language features * Fix filename resolve * Fix default extensions path * Add custom dialog * Store workspace path * Remove outfiles * Cleanup * Always authed outside of CLI * Use location.host for client * Remove useless app interface * Remove debug file for building wordlist * Use chromes tcp host * Update patch * Build browser app before packaging * Replace all css containing file:// URLs, fix webviews * Fix save * Fix mkdir
58 lines
1.8 KiB
JSON
58 lines
1.8 KiB
JSON
{
|
|
"name": "@coder/vscode-remote",
|
|
"repository": "https://github.com/codercom/vscode-remote",
|
|
"author": "Coder",
|
|
"license": "MIT",
|
|
"description": "Run VS Code remotely.",
|
|
"scripts": {
|
|
"build:rules": "cd ./rules && tsc -p .",
|
|
"packages:install": "cd ./packages && yarn",
|
|
"postinstall": "npm-run-all --parallel packages:install build:rules",
|
|
"start": "cd ./packages/server && yarn start",
|
|
"task": "ts-node -r tsconfig-paths/register build/tasks.ts",
|
|
"test": "cd ./packages && yarn test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^5.0.4",
|
|
"@types/node": "^10.12.18",
|
|
"@types/trash": "^4.3.1",
|
|
"crypto-browserify": "^3.12.0",
|
|
"css-loader": "^2.1.0",
|
|
"file-loader": "^3.0.1",
|
|
"fork-ts-checker-webpack-plugin": "^0.5.2",
|
|
"fs-extra": "^7.0.1",
|
|
"happypack": "^5.0.1",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"http-browserify": "^1.7.0",
|
|
"ignore-loader": "^0.1.2",
|
|
"mini-css-extract-plugin": "^0.5.0",
|
|
"node-sass": "^4.11.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"path-browserify": "^1.0.0",
|
|
"preload-webpack-plugin": "^3.0.0-beta.2",
|
|
"sass-loader": "^7.1.0",
|
|
"string-replace-loader": "^2.1.1",
|
|
"style-loader": "^0.23.1",
|
|
"ts-loader": "^5.3.3",
|
|
"ts-node": "^7.0.1",
|
|
"tsconfig-paths": "^3.8.0",
|
|
"tslint": "^5.12.1",
|
|
"typescript": "^3.2.2",
|
|
"typescript-tslint-plugin": "^0.2.1",
|
|
"uglifyjs-webpack-plugin": "^2.1.1",
|
|
"webpack": "^4.28.4",
|
|
"webpack-bundle-analyzer": "^3.0.3",
|
|
"webpack-cli": "^3.2.1",
|
|
"webpack-dev-middleware": "^3.5.0",
|
|
"webpack-dev-server": "^3.1.14",
|
|
"webpack-hot-middleware": "^2.24.3",
|
|
"write-file-webpack-plugin": "^4.5.0"
|
|
},
|
|
"dependencies": {
|
|
"node-loader": "^0.6.0",
|
|
"spdlog": "^0.7.2",
|
|
"trash": "^4.3.0",
|
|
"webpack-merge": "^4.2.1"
|
|
}
|
|
}
|