-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "webview-examples",
"scripts": {
"build": "concurrently \"npm run build:node\" \"npm run build:bun\" \"npm run build:deno\"",
"build:node": "webview --build --input ./src/node.js --output ./dist-node --resources resources.json --name NodeApp",
"build:bun": "bun build --compile ./src/bun.ts --outfile ./dist-bun/BunApp",
"build:deno": "deno compile -A --output ./dist-deno/DenoApp ./src/deno.ts",
"dev": "concurrently \"npm run dev:node\" \"npm run dev:bun\" \"npm run dev:deno\"",
"dev:node": "node ./src/node.js",
"dev:bun": "bun run ./src/bun.ts",
"dev:deno": "deno run -A ./src/deno.ts",
"start": "concurrently \"npm run start:node\" \"npm run start:bun\" \"npm run start:deno\"",
"start:node": "./dist-node/NodeApp",
"start:bun": "./dist-bun/BunApp",
"start:deno": "./dist-deno/DenoApp"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@webviewjs/webview": "^0.1.2",
"concurrently": "^9.0.1"
}
}