-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.97 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
{
"name": "@bioflow/cli",
"version": "0.0.1",
"private": false,
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bin": {
"bioflow": "dist/cli/main.js",
"bioflow-mcp": "dist/mcp/main.js"
},
"exports": {
".": "./dist/cli/main.js",
"./package.json": "./package.json",
"./cli/*.js": "./dist/cli/*.js",
"./clean/*.js": "./dist/clean/*.js",
"./core/*.js": "./dist/core/*.js",
"./gxp/*.js": "./dist/gxp/*.js",
"./mcp/*.js": "./dist/mcp/*.js",
"./schemas/*.js": "./dist/schemas/*.js",
"./sync/*.js": "./dist/sync/*.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json && node scripts/copy-build-assets.mjs",
"check": "npm run typecheck && npm run test:serial && npm run verify:golden",
"check:ci": "tsx scripts/check-ci.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:serial": "vitest run --pool=threads --poolOptions.threads.singleThread=true",
"test:packaged-cli": "BIOFLOW_RUN_PACKAGED_CLI_TEST=1 vitest run test/packaged-cli.test.ts",
"test:watch": "vitest",
"fixture:golden:generate": "tsx scripts/generate-golden-fixture.ts",
"verify:golden": "tsx scripts/verify-golden.ts",
"demo:killer": "tsx scripts/demo-killer.ts",
"demo:killer:ci": "tsx scripts/demo-killer-ci.ts",
"demo:sample-sheet:local": "tsx scripts/demo-sample-sheet-beta.ts --mode local",
"demo:verify": "tsx scripts/demo-verify.ts",
"demo:tidy": "tsx scripts/demo-tidy.ts",
"bioflow": "tsx src/cli/main.ts",
"mcp": "tsx src/mcp/main.ts",
"pack:cli": "npm pack --json"
},
"dependencies": {
"yaml": "^2.8.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}