diff --git a/README.md b/README.md index a1bad5b..11db89a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -This library provides various methods for fetching releases from SWTOR’s patch server CDN and installing them. You can use it to write your own patch program. If you just want to install patches without having to do any programming, use the command-line tools from the [ssn-tools](/swtor/ssn-tools) repository. +This library provides various methods for fetching releases from SWTOR’s patch server CDN and installing them. You can use it to write your own patch program. If you just want to install patches without having to do any programming, use the command line tools from the [ssn-tools](/swtor/ssn-tools) repository. # Installation -For this tool to work, `tsc` and `tslint` must be globally available, e.g. by running: +For this library to work, the following packages must be globally installed: ```bash -sudo npm install -g typescript tslint +sudo npm install -g @types/node typescript ``` In the project where you want to use this library, add the following to your `package.json` file: diff --git a/package-lock.json b/package-lock.json index f9e7ed6..24729c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3,12 +3,6 @@ "requires": true, "lockfileVersion": 1, "dependencies": { - "@types/node": { - "version": "10.12.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.0.tgz", - "integrity": "sha512-3TUHC3jsBAB7qVRGxT6lWyYo2v96BMmD2PTcl47H25Lu7UXtFH/2qqmKiVrnel6Ne//0TFYf6uvNX+HW2FRkLQ==", - "dev": true - }, "sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", diff --git a/package.json b/package.json index a9c4df2..597454a 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,6 @@ "start": "rm -rf dist && tsc", "test": "echo \"Error: no test specified\" && exit 1" }, - "devDependencies": { - "@types/node": "^10.12.0" - }, "dependencies": { "ssn-installer": "git+https://git.jedipedia.net/swtor/ssn-installer.git", "xml-js": "^1.6.8"