-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
45
46
47
{
"name": "@pydantic/logfire-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "vp config",
"build": "vp run --filter \"./packages/*\" build",
"dev": "vp run --filter \"./packages/*\" --parallel dev",
"test": "vp run --filter \"./packages/*\" test",
"typecheck": "vp run --filter \"./packages/*\" typecheck",
"lint": "vp lint",
"format": "vp fmt . --write",
"format-check": "vp fmt --check",
"check": "pnpm run build && vp check && pnpm run typecheck && pnpm run test",
"release": "pnpm run build && pnpm publish -r --access public",
"changeset-add": "pnpm changeset add"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "catalog:",
"vite": "^8.0.10",
"vite-plus": "0.1.20",
"vitest": "^4.1.5"
},
"engines": {
"node": "24"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"onFail": "warn"
}
},
"packageManager": "pnpm@10.28.0",
"pnpm": {
"overrides": {
"protobufjs@^7.5.3": "7.5.5",
"undici@>=7.0.0 <7.24.0": ">=7.24.0"
}
}
}