Initial commit

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-01-08 22:47:50 +01:00
commit d0f8f945f3
21 changed files with 2146 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "dotfiles",
"version": "0.1.0",
"main": "build/cli.js",
"bin": {
"dotfiles": "./build/cli.js"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node index.ts",
"build": "tsc"
},
"dependencies": {
"clear": "^0.1.0",
"cli-color": "^2.0.0",
"cli-progress": "^3.3.1",
"colors": "^1.4.0",
"enquirer": "^2.3.2",
"listr": "^0.14.3",
"ora": "^4.0.3"
},
"devDependencies": {
"@types/cli-progress": "^3.4.0",
"@types/node": "^13.1.1",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
}
}