-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathpackage.json
82 lines (82 loc) · 3.57 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
{
"name": "time-to-leave",
"productName": "Time to Leave",
"version": "3.0.1-dev",
"description": "Log work hours and get notified when it's time to leave the office and start to live.",
"author": "TTLApp Organization",
"homepage": "https://github.com/TTLApp/time-to-leave#readme",
"repository": {
"type": "git",
"url": "github:TTLApp/time-to-leave.git"
},
"type": "module",
"main": "main.mjs",
"scripts": {
"clean": "rimraf coverage release-builds __tests__/__main__/__database.ttldb__ ",
"debug:main": "electron --inspect=5858 .",
"debug:render": "electron --remote-debugging-port=9222 .",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint css/*.css",
"lint:eslint": "eslint .",
"lint:markdown": "prettier docs/*.md *.md -c",
"lint:json": "prettier locales/*/*.json -c",
"lint-fix": "npm-run-all --parallel lint-fix:*",
"lint-fix:css": "npm run lint:css -- --fix",
"lint-fix:eslint": "npm run lint:eslint -- --fix",
"lint-fix:json": "npm run lint:json -- --write",
"lint-fix:markdown": "npm run lint:markdown -- --write",
"package:deb": "electron-packager . time-to-leave --overwrite --asar --platform=linux --arch=x64 --icon=assets/icon-deb.png --prune=true --out=release-builds --ignore=__tests__ --ignore=tests --ignore=./scripts --ignore=Resources --ignore=release-builds --ignore=packages --ignore=coverage_c8 --ignore=__mocks__ --ignore=docs",
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=universal --icon=assets/icon-mac.icns --prune=true --out=release-builds --ignore=__tests__ --ignore=tests --ignore=./scripts --ignore=Resources --ignore=release-builds --ignore=packages --ignore=coverage_c8 --ignore=__mocks__ --ignore=docs",
"package:win": "electron-packager . \"Time to Leave\" --overwrite --platform=win32 --arch=ia32 --icon=assets/icon-win.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Time to Leave\" --ignore=__tests__ --ignore=tests --ignore=./scripts --ignore=Resources --ignore=release-builds --ignore=packages --ignore=coverage_c8 --ignore=__mocks__ --ignore=docs",
"preinstall": "npx npm-force-resolutions",
"prepare": "husky",
"pretest": "npm run clean",
"postinstall": "patch-package",
"start": "electron .",
"test": "npm-run-all test:*",
"test:mocha": "c8 -o ./coverage_mocha -- mocha",
"test:electron-mocha": "c8 electron-mocha",
"setup:win": "node scripts/create_windows_installer.cjs"
},
"license": "GPL-3.0",
"devDependencies": {
"@electron/packager": "18.3.6",
"@electron/remote": "2.1.2",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"c8": "10.1.3",
"electron": "32.2.8",
"electron-mocha": "13.0.1",
"electron-reloader": "1.2.3",
"electron-winstaller": "5.4.0",
"eslint": "9.18.0",
"globals": "15.14.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"mocha": "11.0.1",
"npm-run-all": "4.1.5",
"patch-package": "8.0.0",
"playwright": "1.49.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"sinon": "18.0.1",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"bootstrap": "5.3.3",
"date-holidays": "3.23.18",
"electron-store": "10.0.0",
"esm": "3.2.25",
"i18next": "24.2.1",
"i18next-fs-backend": "2.6.0",
"is-online": "11.0.0",
"jquery": "3.7.1",
"jquery-mousewheel": "3.1.13",
"jsonschema": "1.4.1"
},
"engines": {
"node": ">=20.12.0"
}
}