-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "asili",
"version": "1.4.4",
"type": "module",
"private": true,
"description": "Privacy-first polygenic risk score analysis. All processing happens on your device.",
"scripts": {
"test": "node scripts/test.js",
"test:node": "node --test 'src/{store,utils}/**/*.test.js' 'packages/core/**/*.test.js'",
"test:pipeline": "node --test 'packages/pipeline/**/*.test.js'",
"test:browser": "npx web-test-runner --config .configs/web-test-runner.config.js",
"start": "node src/server.js",
"dev": "node --watch --env-file=.env --env-file=.env.local src/server.js",
"build": "node scripts/build.js",
"postinstall": "node scripts/setup.js",
"spec": "clearstack",
"traits": "node scripts/traits.js",
"deploy:data": "node --env-file=.env --env-file=.env.local scripts/deploy-data.js",
"deploy:data:small": "node --env-file=.env --env-file=.env.local scripts/deploy-data.js --small"
},
"keywords": [
"genomics",
"polygenic-risk-scores",
"privacy",
"duckdb",
"web-components",
"pgs-catalog"
],
"author": "techninja (James Todd)",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@techninja/clearstack": "^0.3.37",
"@types/node": "^22.0.0",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-unused-imports": "^4.0.0",
"markdownlint-cli2": "^0.22.0",
"playwright": "^1.50.0",
"prettier": "^3.8.1",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.2"
},
"main": "src/server.js",
"dependencies": {
"@duckdb/duckdb-wasm": "1.33.1-dev44.0",
"express": "^5.2.1",
"hybrids": "^9.1.22",
"lucide-static": "^1.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
],
"overrides": {
"qs": "6.15.2"
}
}
}