-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 810 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 810 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": "mercur",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test:integration:http": "turbo run test:integration:http --filter=@mercurjs/integration-tests",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"dependencies": {
"@mercurjs/core": "workspace:*"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"turbo": "^2.7.4",
"typescript": "5.9.3",
"typescript-eslint": "^8.53.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.8",
"workspaces": [
"apps/*",
"packages/*",
"packages/providers/*",
"integration-tests"
]
}