@sjcrh/proteinpaint-server 2.207.1-0 → 2.208.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.
- package/dataset/termdb.test.js +5 -0
- package/package.json +10 -9
- package/src/app.js +1782 -1120
- package/src/serverconfig.js +9 -0
package/dataset/termdb.test.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjcrh/proteinpaint-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.208.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
|
|
6
6
|
"main": "src/app.js",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"mjs": "esbuild \"$DIR/*.ts\" --platform=node --outdir=\"$DIR\" --format=esm",
|
|
29
29
|
"cjs": "esbuild \"$DIR/*.ts\" --platform=node --outdir=\"$DIR\" --format=cjs",
|
|
30
30
|
"build": "./build.sh",
|
|
31
|
-
"prepack": "npm run build",
|
|
32
|
-
"postpack": "./dedupjs.sh",
|
|
31
|
+
"prepack": "npm run build && npm pkg set _buildTime=$(date -u +%Y-%m-%dT%H:%M:%SZ)",
|
|
32
|
+
"postpack": "npm pkg delete _buildTime && ./dedupjs.sh",
|
|
33
33
|
"dedup": "./dedupjs.sh"
|
|
34
34
|
},
|
|
35
35
|
"author": "",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@sjcrh/augen": "2.204.0",
|
|
60
|
-
"@sjcrh/proteinpaint-python": "2.
|
|
61
|
-
"@sjcrh/proteinpaint-r": "2.207.1
|
|
62
|
-
"@sjcrh/proteinpaint-rust": "2.
|
|
63
|
-
"@sjcrh/proteinpaint-shared": "2.
|
|
64
|
-
"@sjcrh/proteinpaint-types": "2.
|
|
60
|
+
"@sjcrh/proteinpaint-python": "2.208.0",
|
|
61
|
+
"@sjcrh/proteinpaint-r": "2.207.1",
|
|
62
|
+
"@sjcrh/proteinpaint-rust": "2.208.0",
|
|
63
|
+
"@sjcrh/proteinpaint-shared": "2.208.0",
|
|
64
|
+
"@sjcrh/proteinpaint-types": "2.208.0",
|
|
65
65
|
"@types/express": "^5.0.0",
|
|
66
66
|
"@types/express-session": "^1.18.1",
|
|
67
67
|
"better-sqlite3": "^12.4.1",
|
|
@@ -120,5 +120,6 @@
|
|
|
120
120
|
}
|
|
121
121
|
]
|
|
122
122
|
]
|
|
123
|
-
}
|
|
123
|
+
},
|
|
124
|
+
"_buildTime": "2026-09-13T18:11:20Z"
|
|
124
125
|
}
|