-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.31 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.31 KB
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
{
"name": "mango",
"version": "1.0.0",
"description": "A fast, native MongoDB GUI — built with Perry",
"main": "src/app.ts",
"perry": {
"targets": ["macos", "ios", "android", "linux", "windows", "web"],
"icon": "logo/mango-app-icon.svg",
"splash": {
"image": "logo/mango-app-icon-256.png",
"background": "#FFF5EE"
}
},
"scripts": {
"build": "perry build",
"build:macos": "perry build --target macos",
"build:ios": "perry build --target ios",
"build:android": "perry build --target android",
"build:linux": "perry compile src/app.ts --target linux",
"build:windows": "perry build --target windows",
"dev": "perry dev",
"dev:macos": "perry dev --target macos",
"dev:linux": "perry compile src/app.ts --target linux && ./app",
"build:web": "perry build --target web",
"dev:web": "perry dev --target web",
"build:serve": "perry build src/serve.ts",
"check": "perry check",
"test": "bun test",
"test:unit": "bun test tests/connection-store.test.ts tests/preferences.test.ts tests/theme.test.ts tests/document-validation.test.ts",
"test:integration": "bun test tests/mongo-client.test.ts"
},
"author": "Skelpo GmbH",
"license": "MIT",
"dependencies": {
"@honeide/editor": "file:../hone/hone-editor",
"mongodb": "^7.1.0"
}
}