-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "stim-monorepo",
"private": true,
"description": "Workspace root. The published packages live in packages/.",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit -p packages/core/tsconfig.json && tsc --noEmit -p packages/cache/tsconfig.json && tsc --noEmit -p packages/stim-cli/tsconfig.json && tsc --noEmit -p packages/metro/tsconfig.json && tsc --noEmit -p packages/expo-build-cache/tsconfig.json",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"test:compat": "vitest run --config vitest.compat.config.ts",
"test:runtime": "node test/runtime-floor.mjs",
"test:watch": "vitest",
"build": "pnpm -r --filter \"./packages/*\" run build",
"test:e2e": "node --test test/e2e/*.e2e.js",
"knip": "knip",
"benchmark:agent": "node scripts/agent-benchmark/driver.mjs",
"release:prep": "node scripts/release-prep.mjs",
"preinstall": "npx only-allow pnpm",
"test:prompts": "node scripts/prompt-eval/run.mjs"
},
"devDependencies": {
"@types/node": "26.3.0",
"knip": "^6.32.2",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "5.0.0"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@12.0.0"
}