@platforma-open/milaboratories.sort-seq-analysis.block 1.0.2

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/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@platforma-open/milaboratories.sort-seq-analysis.block",
3
+ "version": "1.0.2",
4
+ "files": [
5
+ "dist",
6
+ "block-pack"
7
+ ],
8
+ "type": "module",
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "sources": "./src/index.ts",
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
18
+ },
19
+ "dependencies": {},
20
+ "devDependencies": {
21
+ "@milaboratories/ts-builder": "1.6.2",
22
+ "@milaboratories/ts-configs": "1.4.0",
23
+ "@platforma-sdk/block-tools": "2.13.0",
24
+ "@platforma-sdk/model": "1.81.1",
25
+ "shx": "~0.4.0",
26
+ "typescript": "~5.6.3",
27
+ "@platforma-open/milaboratories.sort-seq-analysis.ui": "1.0.2",
28
+ "@platforma-open/milaboratories.sort-seq-analysis.workflow": "1.0.2",
29
+ "@platforma-open/milaboratories.sort-seq-analysis.model": "1.0.2"
30
+ },
31
+ "block": {
32
+ "components": {
33
+ "workflow": "@platforma-open/milaboratories.sort-seq-analysis.workflow/dist/tengo/tpl/main.plj.gz",
34
+ "model": "@platforma-open/milaboratories.sort-seq-analysis.model/dist/model.json",
35
+ "ui": "@platforma-open/milaboratories.sort-seq-analysis.ui/dist"
36
+ },
37
+ "meta": {
38
+ "title": "Sort-Seq Analysis",
39
+ "logo": "file:logos/block-logo.png",
40
+ "url": "https://github.com/platforma-open/sort-seq-analysis",
41
+ "support": "mailto:support@milaboratories.com",
42
+ "description": "Scores protein variants from a sort-seq (FACS bin) experiment: per condition, the read-weighted mean of the gate ranks each variant sorted into, and that value minus the parent's.",
43
+ "longDescription": "file:../docs/description.md",
44
+ "changelog": "file:./CHANGELOG.md",
45
+ "tags": [
46
+ "downstream",
47
+ "dms",
48
+ "antibody",
49
+ "assay"
50
+ ],
51
+ "organization": {
52
+ "name": "MiLaboratories Inc",
53
+ "url": "https://milaboratories.com/",
54
+ "logo": "file:logos/organization-logo.png"
55
+ }
56
+ }
57
+ },
58
+ "scripts": {
59
+ "build": "ts-builder build --target block-facade && block-tools pack",
60
+ "check": "ts-builder type-check --target block-facade",
61
+ "do-pack": "shx rm -f package.tgz && pnpm pack && shx mv *.tgz package.tgz"
62
+ }
63
+ }