-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.53 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
42
43
44
{
"name": "@tempo/apps",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"precommit": "prek run --all-files --config .github/.pre-commit.yml",
"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 fee-payer 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 && simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@j178/prek": "^0.3.6",
"@tempoxyz/lints": "github:tempoxyz/lints",
"@typescript/native-preview": "^7.0.0-dev.20260319.1",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.14.0",
"onFail": "download"
}
},
"packageManager": "pnpm@10.33.0",
"simple-git-hooks": {
"pre-commit": "pnpm prek run --all-files --config='.github/.pre-commit.yml'"
}
}