-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"name": "@platforma-open/milaboratories.software-cellranger",
"version": "1.0.2",
"description": "Cellranger software package for Platforma Backend",
"scripts": {
"build": "true",
"pkg:build": "rm -rf dld && ./scripts/build.sh 9.0.0",
"pkg:publish": "./scripts/publish.sh 9.0.0",
"prepublishOnly": "npm run pkg:build && npm run pkg:publish"
},
"files": [
"dist/"
],
"block-software": {
"artifacts": {
"9.0.0": {
"registry": "platforma-open",
"version": "9.0.0",
"type": "binary",
"roots": {
"linux-x64": "./dld/cellranger-9.0.0-linux-x64",
"linux-aarch64": "./dld/cellranger-9.0.0-linux-aarch64",
"macosx-x64": "./dld/cellranger-9.0.0-macosx-x64",
"macosx-aarch64": "./dld/cellranger-9.0.0-macosx-aarch64",
"windows-x64": "./dld/cellranger-9.0.0-windows-x64"
}
}
},
"entrypoints": {
"cellranger": { "binary": { "artifact": "9.0.0", "cmd": ["{pkg}/bin/cellranger"] } },
"cellranger-9.0.0": { "binary": { "artifact": "9.0.0", "cmd": ["{pkg}/bin/cellranger"] } }
}
},
"license": "UNLICENSED",
"devDependencies": {
"@platforma-sdk/package-builder": "^2.15.0"
}
}