-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1005 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": "roamcode-workspace",
"version": "2.3.3",
"private": true,
"type": "module",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "pnpm -r build",
"postinstall": "node scripts/fix-pty-perms.mjs",
"test": "vitest run",
"test:mobile": "pnpm --filter @roamcode.ai/web test:mobile",
"test:watch": "vitest",
"typecheck": "tsc -b --pretty --force",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ghostty:metadata": "node scripts/ghostty-wasm.mjs metadata",
"ghostty:verify": "node scripts/ghostty-wasm.mjs verify",
"ghostty:update": "node scripts/ghostty-wasm.mjs update",
"release:prepare": "node scripts/release-prepare.mjs"
},
"devDependencies": {
"@types/node": "^26.1.0",
"eslint": "^10.6.0",
"prettier": "^3.9.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}