-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 779 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
{
"name": "marklayer",
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"turbo": "^2.10.10",
"typescript": "^7.0.2"
},
"packageManager": "bun@1.3.14",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"check": "turbo run check",
"test": "turbo run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"deploy": "turbo run deploy --filter=@marklayer/worker",
"deploy:mcp": "turbo run deploy --filter=marklayer-mcp",
"deploy:site": "turbo run deploy:pages --filter=@marklayer/site",
"zip:extension": "turbo run zip:all --filter=@marklayer/extension"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2"
}
}