forked from NaiboWang/EasySpider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "easy-spider",
"productName": "EasySpider",
"version": "0.6.3",
"icon": "./favicon",
"description": "NoCode Visual Web Crawler",
"main": "main.js",
"scripts": {
"start_direct": "electron .",
"change_version": "node change_version.js",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "Naibo Wang",
"license": "AGPL-3.0",
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-deb": "^6.0.5",
"@electron-forge/maker-rpm": "^6.0.5",
"@electron-forge/maker-squirrel": "^6.0.5",
"@electron-forge/maker-zip": "^6.0.5",
"electron": "^27.1.3"
},
"repository": "https://github.com/NaiboWang/EasySpider",
"dependencies": {
"cors": "^2.8.5",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.21.2",
"formidable": "^3.5.0",
"http": "^0.0.1-security",
"multer": "^1.4.5-lts.1",
"node-abi": "^3.52.0",
"node-window-manager": "^2.2.4",
"selenium-webdriver": "^4.27.0",
"ws": "^8.18.0",
"xlsx": "^0.18.5"
},
"config": {
"forge": {
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "EasySpider"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb"
},
{
"name": "@electron-forge/maker-rpm"
}
],
"packagerConfig": {
"icon": "./favicon",
"appVersion": "0.6.3",
"name": "EasySpider",
"executableName": "EasySpider",
"appCopyright": "Naibo Wang (naibowang@foxmail.com)",
"win32metadata": {
"ProductName": "EasySpider",
"CompanyName": "王乃博 (浙江大学与新加坡国立大学)",
"FileDescription": "EasySpider"
}
},
"publishers": []
}
}
}