aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 64508db7e8a97e7db4fd2af5c3d00aa7308b2cca (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
{
  "name": "sophie",
  "version": "0.1.0",
  "description": "Messaging app build from the ground up with security in mind",
  "keywords": [
    "messaging",
    "app"
  ],
  "license": "AGPL-3.0-only",
  "private": true,
  "engines": {
    "node": ">=v16.13"
  },
  "main": "packages/main/dist/index.cjs",
  "scripts": {
    "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 --config.asar=false",
    "watch": "node scripts/watch.js",
    "typecheck": "yarn workspaces foreach -vpt run typecheck",
    "update-electron-vendors": "node scripts/update-electron-vendors.js"
  },
  "workspaces": [
    "packages/main",
    "packages/preload",
    "packages/renderer",
    "packages/shared"
  ],
  "devDependencies": {
    "@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.5",
    "eslint": "8.5.0",
    "rollup": "^2.61.1",
    "typescript": "4.5.4",
    "vite": "2.7.6"
  },
  "packageManager": "yarn@3.1.1"
}