-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "videonotes",
"version": "1.9.2",
"description": "视频笔记",
"main": "VideoNotes.html",
"scripts": {
"babel": "node ./babelgen.js",
"dist": "build --tasks win-x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"distmac": "build --tasks mac-x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"dist32": "build --tasks win-x86 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"start": "run --x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"start32": "run --x86 --mirror https://npm.taobao.org/mirrors/nwjs/ ."
},
"build": {
"nwVersion": "0.44.6",
"target": [
"nsis7z"
],
"excludes": [
"./installer/*"
],
"packed": true,
"win": {
"productName": "VideoNotes",
"companyName": "Jerry Liu",
"icon": "./res/VNIcon.ico"
},
"nsis": {
"icon": "./res/VNIcon.ico",
"languages": [
"SimpChinese",
"English"
]
},
"mac": {
"icon": "./res/VNIcon.icns",
"documentIcon": "./res/VNIcon.icns"
}
},
"node-remote": [
"https://player.bilibili.com/*",
"*://xbeibeix.com/*",
"https://*.acfun.cn/player/*",
"*://web.microsoftstream.com/*",
"*://youtube.com/*"
],
"user-agent": "VideoNotes/%ver(%osinfo)",
"window": {
"show": true,
"icon": "./res/VNIcon.png",
"min_width": 250,
"min_height": 300,
"position": "center"
},
"author": "Jerry Liu",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"eslint": "^6.8.0",
"nwjs-builder-phoenix": "^1.15.0"
},
"dependencies": {
"babel-plugin-loop-optimizer": "^1.4.1",
"localforage": "^1.7.3"
}
}