@platforma-open/milaboratories.clonotype-browser-3 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +9 -0
- package/index.js +15 -0
- package/package.json +49 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BlockPackDescriptionAbsolute } from '@platforma-sdk/block-tools';
|
|
2
|
+
|
|
3
|
+
declare function loadBlockDescription(): BlockPackDescriptionAbsolute;
|
|
4
|
+
declare const blockSpec: {
|
|
5
|
+
type: 'dev-v2';
|
|
6
|
+
folder: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export { loadBlockDescription, blockSpec };
|
package/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const blockTools = require('@platforma-sdk/block-tools');
|
|
2
|
+
|
|
3
|
+
async function loadBlockDescription() {
|
|
4
|
+
return await blockTools.loadPackDescriptionFromSource(__dirname);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
const blockSpec = {
|
|
8
|
+
type: 'dev-v2',
|
|
9
|
+
folder: __dirname
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
module.exports = {
|
|
13
|
+
blockSpec,
|
|
14
|
+
loadBlockDescription
|
|
15
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@platforma-open/milaboratories.clonotype-browser-3",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"files": [
|
|
5
|
+
"index.d.ts",
|
|
6
|
+
"index.js"
|
|
7
|
+
],
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@platforma-sdk/model": "^1.49.0",
|
|
10
|
+
"@platforma-open/milaboratories.clonotype-browser-3.workflow": "1.0.1",
|
|
11
|
+
"@platforma-open/milaboratories.clonotype-browser-3.ui": "1.0.1",
|
|
12
|
+
"@platforma-open/milaboratories.clonotype-browser-3.model": "1.0.1"
|
|
13
|
+
},
|
|
14
|
+
"block": {
|
|
15
|
+
"components": {
|
|
16
|
+
"workflow": "@platforma-open/milaboratories.clonotype-browser-3.workflow/dist/tengo/tpl/main.plj.gz",
|
|
17
|
+
"model": "@platforma-open/milaboratories.clonotype-browser-3.model/dist/model.json",
|
|
18
|
+
"ui": "@platforma-open/milaboratories.clonotype-browser-3.ui/dist"
|
|
19
|
+
},
|
|
20
|
+
"meta": {
|
|
21
|
+
"title": "Clonotype Browser",
|
|
22
|
+
"logo": "file:../logos/block-logo.png",
|
|
23
|
+
"url": "https://github.com/platforma-open/clonotype-browser-3",
|
|
24
|
+
"support": "mailto:support@milaboratories.com",
|
|
25
|
+
"description": "Interactive browser for exploring and annotating T/B cell clonotypes with custom tags for tracking, filtering, and downstream analysis.",
|
|
26
|
+
"longDescription": "file:../docs/description.md",
|
|
27
|
+
"changelog": "file:./CHANGELOG.md",
|
|
28
|
+
"tags": [
|
|
29
|
+
"airr",
|
|
30
|
+
"vdj",
|
|
31
|
+
"annotation"
|
|
32
|
+
],
|
|
33
|
+
"organization": {
|
|
34
|
+
"name": "MiLaboratories Inc",
|
|
35
|
+
"url": "https://milaboratories.com/",
|
|
36
|
+
"logo": "file:../logos/organization-logo.png"
|
|
37
|
+
},
|
|
38
|
+
"marketplaceRanking": 16700
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@platforma-sdk/block-tools": "^2.6.28"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,vue}\"",
|
|
46
|
+
"build": "rm -rf ./block-pack && block-tools pack",
|
|
47
|
+
"mark-stable": "block-tools mark-stable -r 's3://milab-euce1-prod-pkgs-s3-block-registry/pub/releases/?region=eu-central-1'"
|
|
48
|
+
}
|
|
49
|
+
}
|