-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 852 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
{
"name": "braincode",
"private": true,
"version": "0.2.7",
"license": "MIT",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"braincode": "bun run apps/cli/src/index.ts",
"benchmark": "bun run apps/cli/src/index.ts benchmark",
"config": "bun run apps/cli/src/index.ts config",
"check": "bunx tsc --noEmit -p tsconfig.json",
"test": "bun test",
"coverage": "env -u BRAINCODE_DEBUG -u BRAINCODE_DEBUG_FILE bun test --coverage --coverage-reporter=lcov",
"build:binaries": "bash scripts/build-binaries.sh",
"build:site": "bun run --filter @braincode/site build",
"site": "bun run --filter @braincode/site dev"
},
"devDependencies": {
"@types/bun": "latest",
"react-devtools-core": "^7.0.1",
"typescript": "latest"
},
"packageManager": "bun@1.3.14"
}