forked from wrapper-offline/wrapper-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "wrapper-offline",
"description": "A Node.js app which communicates with a web server to run the LVM",
"version": "2.1.0",
"homepage": "https://discord.gg/Kf7BzSw",
"license": "MIT",
"private": true,
"scripts": {
"start": "npx nodemon src/main",
"start2": "electron .",
"build": "npx electron-packager . --ignore=^/server",
"postinstall": "node scripts/fixModules.js",
"test": "mocha"
},
"main": "./src/main.js",
"engines": {
"node": ">=16"
},
"nodemonConfig": {
"watch": [
"src/",
"scripts/",
"config.json",
"env.json",
"node_modules/"
],
"ignore": [
"_ASSETS/",
"_CACHÉ/",
"_EXPORTS/",
"_LOGS/",
"_SAVED/"
],
"execMap": {
"js": "electron ."
}
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"@octanuary/httpz": "^2.0.9",
"brotli": "^1.3.3",
"electron": "^11.5.0",
"eta": "3.2",
"file-type": "^16.5.4",
"fluent-ffmpeg": "^2.1.2",
"formidable": "^2.0.1",
"js-md5": "^0.7.3",
"mime-types": "^2.1.35",
"mp3-duration": "^1.1.0",
"node-zip": "github:kyriosli/node-zip",
"nodemon": "^3.0.3",
"serve-handler": "^6.1.5",
"sharp": "^0.33.2",
"tempfile": "^3.0.0",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@types/brotli": "^1.3.4",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/formidable": "^3.4.5",
"@types/node": "^20.11.13",
"@types/node-static": "^0.7.11",
"@types/xmldoc": "^1.1.9",
"electron-packager": "^15.5.1",
"js-base64": "^3.7.2",
"mocha": "^10.0.0",
"supertest": "^6.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wrapper-Offline/Wrapper-Offline.git"
},
"author": "Wrapper: Offline",
"bugs": {
"url": "https://github.com/Wrapper-Offline/Wrapper-Offline/issues"
}
}