-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.97 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
{
"name": "comapeo-desktop",
"private": true,
"version": "0.1.0",
"description": "Desktop application for CoMapeo",
"keywords": [],
"author": {
"name": "Awana Digital",
"email": "info@awana.digital"
},
"contributors": [
{
"name": "Andrew Chou",
"email": "andrewchou@fastmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/comapeo-desktop.git"
},
"license": "GPL-3.0",
"type": "module",
"main": "src/main/index.js",
"scripts": {
"postinstall": "patch-package",
"prepare": "husky",
"start": "npm-run-all intl:translations forge:start",
"forge:start": "electron-forge start",
"forge:package": "electron-forge package",
"forge:make": "electron-forge make",
"forge:publish": "electron-forge publish",
"intl:compile:main": "formatjs compile-folder messages/main translations/main --format crowdin --ast",
"intl:compile:renderer": "formatjs compile-folder messages/renderer translations/renderer --format crowdin --ast",
"intl:extract:main": "formatjs extract 'src/main/**/*.{js,ts}' --ignore='**/*.d.ts' --format crowdin --out-file messages/main/en.json",
"intl:extract:renderer": "formatjs extract 'src/renderer/**/*.{js,jsx,ts,tsx}' --ignore='**/*.d.ts' --format crowdin --out-file messages/renderer/en.json",
"intl:translations:main": "npm-run-all intl:extract:main intl:compile:main",
"intl:translations:renderer": "npm-run-all intl:extract:renderer intl:compile:renderer",
"intl:translations": "npm-run-all --print-label --parallel intl:translations:*",
"lint:eslint": "eslint --cache .",
"lint:format": "prettier --cache --check .",
"lint": "npm-run-all --print-label --parallel lint:*",
"types:main": "tsc -p src/main/tsconfig.json",
"types:services": "tsc -p src/services/tsconfig.json",
"types:preload": "tsc -p src/preload/tsconfig.json",
"types:renderer": "tsc -p src/renderer/tsconfig.json",
"types": "npm-run-all --print-label --parallel --continue-on-error types:*",
"test": "npm-run-all --print-label --parallel lint types",
"vite:dev": "vite dev src/renderer",
"vite:build": "vite build src/renderer"
},
"dependencies": {
"@comapeo/core": "2.1.0",
"@comapeo/ipc": "2.0.2",
"@formatjs/intl": "^2.10.11",
"@mapeo/default-config": "5.0.0",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"electron-is-dev": "^3.0.1",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.0",
"sodium-native": "^4.2.2",
"tiny-typed-emitter": "^2.1.0",
"valibot": "^0.42.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-dmg": "^7.5.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-base": "^7.5.0",
"@electron-forge/plugin-fuses": "^7.5.0",
"@electron-forge/shared-types": "^7.5.0",
"@electron/fuses": "^1.8.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@eslint-react/eslint-plugin": "^1.15.2",
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@fontsource-variable/rubik": "^5.1.0",
"@formatjs/cli": "^6.3.5",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@tanstack/react-query": "^5.59.16",
"@types/eslint__js": "^8.42.3",
"@types/lint-staged": "^13.3.0",
"@types/node": "^20.17.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sodium-native": "^2.3.9",
"@vitejs/plugin-react": "^4.3.3",
"electron": "33.0.2",
"eslint": "^9.14.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.8.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10"
},
"overrides": {
"better-sqlite3": "11.5.0"
}
}