feat: use ts, update cd, update README (#12)

Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Jef LeCompte
2020-09-18 04:27:23 -04:00
committed by GitHub
parent dcbaa6bb2e
commit e9fc0bf5f7
25 changed files with 6632 additions and 228 deletions
+17 -4
View File
@@ -2,9 +2,12 @@
"name": "nvidia-snatcher",
"version": "1.0.0",
"description": "🔮 For all your Nvidia needs",
"main": "src/index.js",
"main": "src/index.ts",
"scripts": {
"start": "node src/index.js"
"build": "rimraf ./build && tsc",
"lint": "xo",
"lint:fix": "xo --fix",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
@@ -18,8 +21,18 @@
},
"homepage": "https://github.com/jef/nvidia-snatcher#readme",
"dependencies": {
"dotenv": "^8.2.0",
"nodemailer": "^6.4.11",
"opn": "^6.0.0",
"puppeteer": "^5.3.0"
"open": "^7.2.1",
"puppeteer": "^5.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.11.1",
"@types/nodemailer": "^6.4.0",
"@types/puppeteer": "^3.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.2",
"xo": "^0.33.1"
}
}