-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.1 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
{
"name": "bioformulation-constellation",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"check:knowledge": "node scripts/validate-knowledge.mjs",
"check:public": "node scripts/check-public-scope.mjs",
"check:bundle": "node scripts/check-built-bundle.mjs",
"db:init": "node scripts/knowledge-db.mjs init",
"db:stats": "node scripts/knowledge-db.mjs stats",
"db:seed": "node scripts/knowledge-db.mjs seed",
"db:import": "node scripts/knowledge-db.mjs import",
"db:export": "node scripts/knowledge-db.mjs export",
"check": "npm run typecheck && npm run test:coverage && npm run check:knowledge && npm run check:public && npm run build && npm run check:bundle"
},
"devDependencies": {
"@vitest/coverage-v8": "4.1.10",
"ajv": "8.20.0",
"typescript": "7.0.2",
"vite": "8.1.4",
"vitest": "4.1.10"
},
"engines": {
"node": ">=22.12"
}
}