{ "name": "wetty", "version": "2.0.0", "description": "WeTTY = Web + TTY. Terminal access in browser over http/https", "homepage": "https://github.com/butlerx/wetty", "license": "MIT", "type": "module", "main": "./lib/main.js", "module": "./lib/server.js", "files": [ "lib/" ], "scripts": { "build": "tsc -p tsconfig.json", "contributor": "all-contributors", "dev": "NODE_ENV=development concurrently --kill-others --success first \"tsc -p tsconfig.json \" \"nodemon .\"", "lint": "eslint --ext .ts,.js .", "prepublishOnly": "NODE_ENV=production yarn build", "start": "NODE_ENV=production node .", "test": "mocha -r babel-register-ts src/**/*.spec.ts", "postinstall": "snowpack install" }, "repository": { "type": "git", "url": "git://github.com/butlerx/wetty.git" }, "author": { "name": "Cian Butler", "email": "butlerx@notthe.cloud", "url": "cianbutler.ie" }, "bugs": { "url": "https://github.com/butlerx/wetty/issues" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts}": [ "eslint --fix" ], "*.{json,scss,md}": [ "prettier --write" ] }, "engines": { "node": ">=10.22" }, "nodemonConfig": { "ignore": [ "src/*", "*.json" ] }, "snowpack": { "install": [ "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "file-type", "lodash", "socket.io-client", "toastify-js", "xterm", "xterm-addon-fit" ], "exclude": [ "**" ] }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/free-solid-svg-icons": "^5.11.2", "compression": "^1.7.4", "express": "^4.17.1", "express-winston": "^4.0.1", "file-type": "^12.3.0", "fs-extra": "^8.1.0", "helmet": "^3.20.1", "lodash": "^4.17.19", "node-pty": "^0.9.0", "node-sass-middleware": "^0.11.0", "serve-favicon": "^2.5.0", "socket.io": "^2.2.0", "socket.io-client": "^2.2.0", "toastify-js": "^1.6.1", "winston": "^3.2.1", "xterm": "^4.8.1", "xterm-addon-fit": "^0.4.0", "yargs": "^14.0.0" }, "devDependencies": { "@types/chai": "^4.2.5", "@types/compression": "^1.0.1", "@types/express": "^4.17.1", "@types/fs-extra": "^8.0.0", "@types/helmet": "^0.0.47", "@types/jsdom": "^12.2.4", "@types/lodash": "^4.14.138", "@types/mocha": "^5.2.7", "@types/morgan": "^1.7.37", "@types/node": "^12.7.3", "@types/node-sass-middleware": "^0.0.31", "@types/serve-favicon": "^2.2.31", "@types/sinon": "^7.5.1", "@types/socket.io": "^2.1.2", "@types/socket.io-client": "^1.4.32", "@types/webpack-env": "^1.14.0", "@types/winston": "^2.4.4", "@types/yargs": "^15.0.5", "@typescript-eslint/eslint-plugin": "^2.5.0", "@typescript-eslint/parser": "^2.5.0", "all-contributors-cli": "^6.17.0", "chai": "^4.2.0", "concurrently": "^5.2.0", "eslint": "^7.6.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-prettier": "^3.1.4", "git-authors-cli": "^1.0.27", "husky": "^4.2.5", "jsdom": "^15.2.1", "lint-staged": "^10.2.11", "mocha": "^6.2.2", "nodemon": "^2.0.4", "prettier": "^2.0.5", "sinon": "^7.5.0", "snowpack": "^2.7.5", "typescript": "^3.9.7" }, "contributors": [ "Krishna Srinivas ", "Boyan Rabchev ", "Antonio Calatrava ", "Strubbl ", "Oleg Kurapov ", "Anthony Jund ", "Luca Milanesio ", "nosemeocurrenada ", "Henri ", "Imuli ", "Koushik M.L.N ", "cbutler ", "mirtouf ", "Denis Kramer ", "Jarrett Gilliam ", "Mihir Kumar ", "Nathan LeClaire ", "Andreas Kloeckner ", "Ben Letchford ", "Bertrand Roussel ", "Farhan Khan ", "Felix Bartels ", "Felix Pojtinger ", "James Turnbull ", "Josh Samuelson ", "Jurre Vriesen ", "Kasper Holbek Jensen ", "Krzysztof SuszyƄski ", "Matthew Piercey ", "Neale Pickett ", "Robert ", "Soura Dutta ", "Tri Nguyen ", "harryleesan " ] }