Skip to content

Update package.json #15

Update package.json

Update package.json #15

Workflow file for this run

{

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 3, Col: 3): Unexpected value 'version', (Line: 5, Col: 3): Unexpected value 'main', (Line: 6, Col: 3): Unexpected value 'private', (Line: 7, Col: 3): Unexpected value 'type', (Line: 8, Col: 3): Unexpected value 'scripts', (Line: 12, Col: 3): Unexpected value 'devDependencies', (Line: 16, Col: 3): Unexpected value 'build', (Line: 1, Col: 1): Required property is missing: jobs
"name": "two-sites-viewer",
"version": "1.0.2",
"description": "Electron app: single window with two stacked websites (with logging + live config)",
"main": "main.js",
"private": true,
"type": "module",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win portable"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.example.twositesviewer",
"productName": "Two Sites Viewer",
"files": [
"main.js",
"preload.js",
"config.json",
"package.json"
],
"win": {
"target": ["portable"]
}
}
}