aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 87f9d6b57618cc846a37d74404e18d9f64067b8f (plain) (blame)
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
{
  "name": "sophie",
  "version": "0.1.0",
  "description": "Messaging app built from the ground up with security in mind",
  "keywords": [
    "messaging",
    "app"
  ],
  "author": "Kristóf Marussy <kristof@marussy.com> (https://marussy.com)",
  "license": "AGPL-3.0-only",
  "repository": "https://git.marussy.com/sophie",
  "private": true,
  "engines": {
    "node": ">=v16.13"
  },
  "main": "packages/main/dist/index.cjs",
  "scripts": {
    "clean": "rimraf dist .log && yarn workspaces foreach run clean",
    "test": "jest",
    "build": "yarn workspaces foreach -vpt run build",
    "precompile": "cross-env MODE=production yarn run build",
    "compile": "yarn precompile && electron-builder build --config .electron-builder.config.js --dir",
    "watch": "node scripts/watch.js",
    "typecheck": "yarn workspaces foreach -vpt run typecheck",
    "update-electron-vendors": "node scripts/update-electron-vendors.js",
    "main": "yarn workspace @sophie/main",
    "preload": "yarn workspace @sophie/preload",
    "renderer": "yarn workspace @sophie/renderer",
    "service-inject": "yarn workspace @sophie/service-inject",
    "service-preload": "yarn workspace @sophie/service-preload",
    "service-shared": "yarn workspace @sophie/service-shared",
    "shared": "yarn workspace @sophie/shared"
  },
  "workspaces": [
    "packages/main",
    "packages/preload",
    "packages/renderer",
    "packages/service-inject",
    "packages/service-preload",
    "packages/service-shared",
    "packages/shared"
  ],
  "devDependencies": {
    "@electron/fuses": "^1.5.0",
    "@types/jest": "^27.0.3",
    "@typescript-eslint/eslint-plugin": "^5.8.0",
    "@typescript-eslint/parser": "^5.8.0",
    "cross-env": "^7.0.3",
    "electron": "16.0.5",
    "electron-builder": "^22.14.11",
    "eslint": "^8.5.0",
    "jest": "^27.4.5",
    "rimraf": "^3.0.2",
    "rollup": "^2.62.0",
    "ts-jest": "^27.1.2",
    "typescript": "^4.5.4",
    "vite": "^2.7.6"
  },
  "packageManager": "yarn@3.1.1"
}