-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshipwright.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathshipwright.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"manifestVersion": 1,
"product": {
"id": "basilisk",
"displayName": "Basilisk",
"version": "0.0.0-PLACEHOLDER",
"repository": "https://github.com/Nimblesite/Basilisk",
"homepage": "https://www.basilisk-python.dev"
},
"components": [
{
"id": "basilisk",
"kind": "cli",
"language": "rust",
"binaryName": "basilisk",
"expectedVersion": "${PRODUCT_VERSION}",
"platforms": ["darwin-arm64", "linux-x64", "linux-arm64", "win32-x64", "win32-arm64"],
"sources": ["path", "pkgmgr", "github-release"],
"githubRelease": {
"repo": "Nimblesite/Basilisk",
"assetPattern": "basilisk-${version}-${platform}.tar.gz",
"checksum": true
},
"verifyStartup": false,
"versionCheckStrategy": "version-flag",
"required": true
}
],
"hosts": {
"cli": {
"artifact": "archive",
"activationVerifies": ["basilisk"],
"onMismatch": "error"
},
"pkgmgr": {
"artifact": "brew-formula",
"activationVerifies": ["basilisk"],
"onMismatch": "error"
}
}
}