ente/package.json

24 lines
609 B
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
"name": "electron-frame",
"version": "1.0.0",
"description": "Desktop client of ente",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
2021-03-29 11:27:42 +00:00
"start": "yarn build && electron ./dist/main.js"
2021-03-27 12:35:04 +00:00
},
"author": "abhinav-grd",
"devDependencies": {
2021-03-31 05:24:36 +00:00
"@types/node": "^14.14.37",
2021-03-30 11:26:36 +00:00
"@types/promise-fs": "^2.1.1",
2021-03-31 05:24:36 +00:00
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"electron": "^12.0.2",
"eslint": "^7.23.0",
2021-03-30 11:26:36 +00:00
"promise-fs": "^2.1.1",
2021-03-31 05:24:36 +00:00
"typescript": "^4.2.3"
2021-03-27 12:35:04 +00:00
},
2021-03-31 05:24:36 +00:00
"dependencies": {}
2021-03-27 12:35:04 +00:00
}