-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 900 Bytes
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
{
"name": "logic-md",
"version": "1.5.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest run",
"bench": "vitest run --config packages/core/vitest.perf.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --build tsconfig.build.json",
"build": "npm run build:core && npm run build -w @logic-md/cli && npm run build -w @logic-md/mcp",
"build:core": "tsc --build tsconfig.build.json && cp packages/core/schema.json packages/core/dist/schema.json"
},
"devDependencies": {
"@biomejs/biome": "~2.5.0",
"@types/node": "^22.19.21",
"@vitest/coverage-v8": "^4.1.8",
"typescript": "^6.0.3",
"vitest": "~4.1.0"
},
"optionalDependencies": {
"@biomejs/cli-darwin-arm64": "^2.5.0"
},
"overrides": {
"fast-uri": "^3.1.2",
"qs": "^6.15.2"
},
"engines": {
"node": ">=22.0.0"
}
}