19 lines
429 B
JSON
19 lines
429 B
JSON
{
|
|
"name": "my-electron-app",
|
|
"version": "1.0.0",
|
|
"description": "Playwright test in electron",
|
|
"license": "MIT",
|
|
"author": "",
|
|
"type": "commonjs",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "cd renderer && npm run build && cd .."
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.57.0",
|
|
"electron": "^39.2.4"
|
|
}
|
|
}
|