mirror of
https://github.com/CompeyDev/gitpod-electron-typescript.git
synced 2024-12-12 04:40:38 +00:00
090af04f4b
Bumps [electron](https://github.com/electron/electron) from 31.3.0 to 31.3.1. - [Release notes](https://github.com/electron/electron/releases) - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) - [Commits](https://github.com/electron/electron/compare/v31.3.0...v31.3.1) --- updated-dependencies: - dependency-name: electron dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
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": "^31.3.1",
|
|
"eslint": "^7.32.0",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"dependencies": {}
|
|
}
|