-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.38 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
41
{
"name": "computer-use-agent",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck:web": "pnpm --filter web exec tsc --noEmit",
"typecheck:api": "pnpm --filter api exec tsc --noEmit",
"typecheck:cli": "pnpm --filter cli exec tsc --noEmit",
"typecheck": "pnpm typecheck:web && pnpm typecheck:api && pnpm typecheck:cli",
"dev:web": "pnpm --filter web dev",
"dev:api": "pnpm --filter api start:dev",
"dev:cli": "pnpm --filter cli dev",
"dev": "concurrently \"pnpm dev:api\" \"pnpm dev:web\"",
"dev:stack:cli": "pnpm --filter cli dev && pnpm --filter api start:dev",
"rebuild": "node scripts/rebuild.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"dependencies": {
"jest": "^30.3.0"
}
}