- Created package.json for Wails JavaScript runtime library. - Added TypeScript definitions for runtime functions. - Implemented runtime.js with event handling and logging functions. - Initialized Go module with dependencies for Wails and other libraries. - Added main.go for application entry point and asset embedding. - Configured wails.json for application settings and build commands.
14 lines
345 B
JSON
14 lines
345 B
JSON
{
|
|
"$schema": "https://wails.io/schemas/config.v2.json",
|
|
"name": "sysmon",
|
|
"outputfilename": "sysmon",
|
|
"frontend:install": "npm install",
|
|
"frontend:build": "npm run build",
|
|
"frontend:dev:watcher": "npm run dev",
|
|
"frontend:dev:serverUrl": "auto",
|
|
"author": {
|
|
"name": "Jonathan Atta",
|
|
"email": "jonathan@qualityap.be"
|
|
}
|
|
}
|