aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorPriyansh <[email protected]>2020-12-22 18:39:20 +0530
committerPriyansh <[email protected]>2020-12-22 18:39:20 +0530
commitfb873ec2c3cb71cd478e6d48b424ddbba67cab0a (patch)
tree29e763f84d54d24152a212ec19cdfad2d56235b5 /package.json
parent6593dc005ae8d8f94e7c6644e3af4026e57cd2bf (diff)
downloadstyx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.tar.xz
styx-fb873ec2c3cb71cd478e6d48b424ddbba67cab0a.zip
App rewrite using typescript
Diffstat (limited to 'package.json')
-rw-r--r--package.json13
1 files changed, 9 insertions, 4 deletions
diff --git a/package.json b/package.json
index f38913c..4d6a44b 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,19 @@
{
- "name": "bexplorer",
+ "name": "styx",
"version": "0.2.0",
"description": "File Manager",
"main": "main.ts",
"scripts": {
- "start": "tsc && electron dist/app.js",
- "build-ts": "tsc"
+ "build": "tsc",
+ "watch": "tsc -w",
+ "lint": "eslint -c .eslintrc --ext .ts ./src",
+ "start": "npm run build && electron ./ts_compiled/app.js"
},
"keywords": [
"File",
"manager",
"explorer",
- "bexplorer",
+ "styx",
"finder",
"dolphin",
"files",
@@ -24,7 +26,10 @@
"license": "MIT",
"dependencies": {},
"devDependencies": {
+ "@typescript-eslint/eslint-plugin": "^4.11.0",
+ "@typescript-eslint/parser": "^4.11.0",
"electron": "^11.1.1",
+ "eslint": "^7.16.0",
"typescript": "^4.1.3"
}
}