-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 974 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 974 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
36
37
{
"name": "software-factory",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"typecheck": "tsc --build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:e2e": "vitest run --config packages/e2e/vitest.config.ts",
"test:watch": "vitest",
"build": "pnpm -r run build",
"clean": "pnpm -r exec -- rm -rf dist *.tsbuildinfo",
"worker:dev": "tsx --env-file=.env packages/worker/src/index.ts"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"@temporalio/core-bridge",
"esbuild",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-javascript",
"tree-sitter-python",
"tree-sitter-rust",
"tree-sitter-typescript"
]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.1",
"typescript": "^5.8.3",
"vitest": "^3.2.1"
}
}