-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 873 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
{
"name": "speckey",
"version": "0.1.0",
"dependencies": {
"@speckey/logger": "workspace:*",
"@speckey/constants": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@stryker-mutator/core": "^9.4.0",
"@stryker-mutator/typescript-checker": "^9.4.0",
"@types/bun": "^1.3.6",
"fast-check": "^4.5.3",
"typescript": "^5.9.3"
},
"private": true,
"scripts": {
"speckey": "bun apps/cli/src/bin.ts",
"dev": "bun run --filter '*' dev",
"build": "bun run --filter '*' build",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:mutate": "stryker run",
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check --write .",
"quality": "bun test --coverage && biome check . && echo '✅ All quality checks passed'"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
]
}