mirror of
https://github.com/CompeyDev/gitpod-electron-typescript.git
synced 2024-12-12 12:50:37 +00:00
2d2f72a2f4
Bumps [electron](https://github.com/electron/electron) from 33.0.0 to 33.0.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/v33.0.0...v33.0.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": "^33.0.1",
|
|
"eslint": "^7.32.0",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {}
|
|
}
|