-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.89 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
{
"name": "wave-safe",
"version": "1.2.0",
"description": "An windows taskbar app that automatically creates persistent rolling backups of a Waves LV1 instance on the network.",
"productName": "WaveSafe",
"company": "LightYourWay",
"copyright": "Copyright WaveSafe contributors. MIT license.",
"main": "src/main.js",
"bin": "src/main.js",
"scripts": {
"lint": "npx prettier . --check",
"format": "npx prettier . --write",
"start": "NODE_ENV=development ts-node-dev src/main.ts",
"test": "node debug build/main.js",
"build": "esbuild --platform=node --bundle src/main.ts --external:node-hide-console-window --outfile=build/main.js",
"pkg": "node scripts/pre-pkg.mjs && pkg --debug --out-path dist --targets node16-win-x64 build/main.js --config pkg-config.json && node scripts/post-pkg.mjs",
"ship": "npm run build && npm run pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LightYourWay/wave-safe.git"
},
"author": "Lukas Runge",
"license": "MIT",
"bugs": {
"url": "https://github.com/LightYourWay/wave-safe/issues"
},
"homepage": "https://github.com/LightYourWay/wave-safe#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@types/node-persist": "^3.1.7",
"esbuild": "^0.19.7",
"fs-extra": "^11.1.1",
"node-gyp": "^10.0.1",
"pkg": "^5.8.1",
"prettier": "3.1.0",
"resedit": "^2.0.0",
"trayicon": "patch:trayicon@npm%3A1.2.2#~/.yarn/patches/trayicon-npm-1.2.2-1a548b1b44.patch",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
},
"dependencies": {
"asciify-image": "^0.1.10",
"bindings": "^1.5.0",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"inquirer": "8.2.6",
"node-hide-console-window": "^2.2.0",
"node-persist": "^3.1.3",
"ps-node": "^0.1.6"
},
"packageManager": "yarn@4.0.2"
}