mirror of
https://github.com/CompeyDev/gitpod-electron-typescript.git
synced 2024-12-12 12:50:37 +00:00
30 lines
772 B
JSON
30 lines
772 B
JSON
{
|
|
"name": "electron-quick-start-typescript",
|
|
"version": "1.0.0",
|
|
"description": "A minimal Electron application written with Typescript",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"lint": "eslint -c .eslintrc --ext .ts ./src",
|
|
"start": "npm run build && electron ./dist/main.js"
|
|
},
|
|
"repository": "https://github.com/electron/electron-quick-start-typescript",
|
|
"keywords": [
|
|
"Electron",
|
|
"quick",
|
|
"start",
|
|
"tutorial",
|
|
"demo",
|
|
"typescript"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "CC0-1.0",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"electron": "^25.3.0",
|
|
"eslint": "^7.32.0",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {}
|
|
}
|