-
Notifications
You must be signed in to change notification settings - Fork 525
/
package.json
116 lines (116 loc) · 3.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tutanota",
"version": "251.241108.0",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/tutao/tutanota.git"
},
"type": "module",
"exports": {
"./*": "./build/prebuilt/*",
"./buildSrc/*": "./buildSrc/*"
},
"scripts": {
"build-packages": "node buildSrc/buildPackages.js all",
"build-runtime-packages": "node buildSrc/buildPackages.js runtime",
"start": "./start-desktop.sh",
"test-ci": "npm run --if-present test -ws && cd test && node test",
"test": "npm run --if-present test -ws && cd test && node --enable-source-maps test",
"test:app": "cd test && node --enable-source-maps test",
"types": "tsc --incremental true --noEmit true",
"prebuild": "node buildSrc/prebuild.js",
"preinstall": "git config core.hooksPath githooks || true",
"postinstall": "node buildSrc/postinstall.js",
"bump-version": "node buildSrc/bump-version.js",
"generate-ipc": "npm run build -w @tutao/licc && licc ./ipc-schema",
"style:check": "prettier -c \"**/*.(ts|js|json|json5)\"",
"style:fix": "prettier -w \"**/*.(ts|js|json|json5)\"",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"check": "npm run style:check && npm run lint:check",
"fix": "npm run style:fix && npm run lint:fix"
},
"dependencies": {
"@tutao/oxmsg": "0.0.9-beta.0",
"@tutao/tuta-wasm-loader": "251.241108.0",
"@tutao/tutanota-crypto": "251.241108.0",
"@tutao/tutanota-error": "251.241108.0",
"@tutao/tutanota-usagetests": "251.241108.0",
"@tutao/tutanota-utils": "251.241108.0",
"@types/better-sqlite3": "7.4.2",
"@types/dompurify": "3.0.5",
"@types/linkifyjs": "2.1.7",
"@types/luxon": "3.4.2",
"@types/mithril": "2.0.11",
"@types/qrcode-svg": "1.1.4",
"@types/systemjs": "6.13.5",
"@types/winreg": "1.2.36",
"better-sqlite3": "git+https://github.com/tutao/better-sqlite3-sqlcipher#53d4abb647a52eb0d3dc0d46acb192bc5e2c0f40",
"cborg": "4.2.2",
"dompurify": "3.1.6",
"electron": "32.2.2",
"electron-updater": "6.3.4",
"jszip": "3.10.1",
"linkify-html": "4.1.3",
"linkifyjs": "4.1.3",
"luxon": "3.4.4",
"mithril": "2.2.2",
"pako": "2.1.0",
"qrcode-svg": "1.1.0",
"squire-rte": "2.2.7",
"systemjs": "6.15.1",
"undici": "6.19.2",
"winreg": "1.2.4"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"devDependencies": {
"@electron/notarize": "2.4.0",
"@octokit/auth-token": "5.1.1",
"@octokit/rest": "21.0.2",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@tutao/licc": "251.241108.0",
"@tutao/otest": "251.241108.0",
"@tutao/tutanota-test-utils": "251.241108.0",
"@types/express": "^4.17.17",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"body-parser": "1.20.3",
"chokidar": "3.6.0",
"commander": "12.1.0",
"electron-builder": "24.13.3",
"electron-packager": "17.1.2",
"esbuild": "0.23.1",
"esbuild-plugin-alias-path": "2.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unicorn": "55.0.0",
"express": "4.21.0",
"fs-extra": "11.2.0",
"full-icu": "1.5.0",
"js-yaml": "4.1.0",
"jsdom": "25.0.0",
"node-gyp": "10.2.0",
"octokit": "4.0.2",
"prettier": "2.8.8",
"rollup": "4.24.0",
"rollup-plugin-visualizer": "5.12.0",
"testdouble": "3.18.0",
"typescript": "5.3.3",
"xhr2": "0.2.1",
"zx": "8.1.5"
},
"workspaces": [
"./packages/*"
],
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
}
}