@platforma-open/milaboratories.mixcr-shm-trees 2.0.0

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.
Files changed (3) hide show
  1. package/index.d.ts +9 -0
  2. package/index.js +15 -0
  3. package/package.json +53 -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,53 @@
1
+ {
2
+ "name": "@platforma-open/milaboratories.mixcr-shm-trees",
3
+ "version": "2.0.0",
4
+ "files": [
5
+ "index.d.ts",
6
+ "index.js"
7
+ ],
8
+ "dependencies": {
9
+ "@platforma-sdk/model": "^1.7.16",
10
+ "@platforma-open/milaboratories.mixcr-shm-trees.model": "2.0.0",
11
+ "@platforma-open/milaboratories.mixcr-shm-trees.workflow": "2.0.0",
12
+ "@platforma-open/milaboratories.mixcr-shm-trees.ui": "2.0.0"
13
+ },
14
+ "block": {
15
+ "components": {
16
+ "workflow": "@platforma-open/milaboratories.mixcr-shm-trees.workflow/dist/tengo/tpl/main.plj.gz",
17
+ "model": "@platforma-open/milaboratories.mixcr-shm-trees.model/dist/model.json",
18
+ "ui": "@platforma-open/milaboratories.mixcr-shm-trees.ui/dist"
19
+ },
20
+ "meta": {
21
+ "title": "MiXCR SHM trees",
22
+ "logo": "file:logos/block-logo.png",
23
+ "url": "https://github.com/milaboratory/block-mixcr-shm-trees",
24
+ "docs": "https://github.com/milaboratory/block-mixcr-shm-trees/docs",
25
+ "support": "mailto:support@milaboratories.com",
26
+ "description": "Extract TCR / BCR Clonotypes from next generation sequencing data",
27
+ "longDescription": "file:./docs/description.md",
28
+ "changelog": "file:CHANGELOG.md",
29
+ "tags": [],
30
+ "organization": {
31
+ "name": "MiLaboratories Inc",
32
+ "url": "https://milaboratories.com/",
33
+ "logo": "file:logos/organization-logo.png"
34
+ }
35
+ }
36
+ },
37
+ "devDependencies": {
38
+ "@platforma-sdk/block-tools": "^2.3.18",
39
+ "@changesets/cli": "^2.27.9"
40
+ },
41
+ "//": {
42
+ "pnpm": {
43
+ "overrides": {
44
+ "@milaboratories/pl-model-common": "/Users/dbolotin/milab/core/platforma/lib/model/common/package.tgz",
45
+ "@platforma-sdk/ui-vue": "/Users/dbolotin/milab/core/platforma/sdk/ui-vue/package.tgz"
46
+ }
47
+ }
48
+ },
49
+ "scripts": {
50
+ "pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,vue}\"",
51
+ "build": "rm -rf ./block-pack && block-tools pack"
52
+ }
53
+ }