-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.75 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.75 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
39
40
41
42
43
44
45
46
{
"name": "mango",
"version": "1.1.28",
"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 compile src/app.ts -o Mango && ./Mango",
"dev:macos": "perry compile src/app.ts -o Mango && ./Mango",
"dev:linux": "perry compile src/app.ts --target linux && ./app",
"build:web": "perry compile src/app.ts --target web -o dist/mango.html",
"dev:web": "perry compile src/app.ts --target web -o dist/mango.html && python3 -m http.server 8765 -d dist",
"build:serve": "perry compile src/serve.ts -o mango-serve",
"dev:web:proxied": "perry compile src/app.ts --target web -o dist/mango.html && perry compile src/serve.ts -o mango-serve && MANGO_TOKENS=devtoken ./mango-serve --html dist/mango.html --allow-local --allow-origin http://localhost:3000",
"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": "^0.3.1",
"@perryts/mongodb": "^0.1.1"
}
}