forked from tempoxyz/tempo-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.26 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.26 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
{
"name": "@tempo/apps",
"private": true,
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "pnpm --recursive --parallel --stream --reporter='append-only' build",
"deploy": "pnpm --recursive --parallel --stream --reporter='append-only' deploy",
"dev:explorer": "pnpm --filter explorer dev",
"dev:sponsor": "pnpm --filter tempo-sponsor dev",
"check": "pnpm --recursive --parallel --stream --reporter='append-only' check:biome",
"postcheck": "pnpm check:types",
"check:biome": "biome check --write --unsafe",
"test": "pnpm --recursive --parallel --stream --reporter='append-only' test",
"check:types": "pnpm --recursive --parallel --stream --reporter='append-only' check:types",
"gen:types": "pnpm --recursive --parallel --stream --reporter='append-only' gen:types",
"lint:tempo": "lints typescript",
"postinstall": "pnpm --recursive --parallel --stream --reporter='append-only' postinstall"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@tempoxyz/lints": "github:tempoxyz/lints",
"@typescript/native-preview": "^7.0.0-dev.20260120.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.12.0",
"onFail": "download"
}
},
"packageManager": "pnpm@10.28.1"
}