-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 890 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "youcam",
"version": "1.1.4",
"description": "A webcam app for YouTube users",
"keywords": [
"webcam",
"gadget"
],
"main": "src/app.html",
"window": {
"show": false,
"always_on_top": true,
"frame": false,
"icon": "assets/icon.png",
"transparent": true,
"position": "center",
"show_in_taskbar": false,
"width": 250,
"height": 250
},
"scripts": {
"start": "nw .",
"build": "nwbuild package.json"
},
"author": "codesignist",
"license": "ISC",
"packageManager": "pnpm@11.2.2",
"dependencies": {
"nw": "^0.111.3"
},
"devDependencies": {
"nw-builder": "^4.17.11"
},
"nwbuild": {
"mode": "build",
"version": "0.111.3",
"flavor": "normal",
"platform": "win",
"arch": "x64",
"outDir": "./dist",
"srcDir": "src/**/* assets/**/* package.json",
"glob": true
}
}