-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.59 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
{
"name": "xray-monorepo",
"version": "0.1.0",
"private": true,
"description": "xray: a tiny local relay that buffers labeled runtime events from any process so an agent or human can drain them and see a scenario from the inside.",
"packageManager": "pnpm@10.5.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,json,md,css}\"",
"release": "pnpm -r publish",
"release:patch": "pnpm --filter @julio_ody/xray exec npm version patch -m \"release: %s\" && git push --follow-tags && pnpm -r publish",
"release:minor": "pnpm --filter @julio_ody/xray exec npm version minor -m \"release: %s\" && git push --follow-tags && pnpm -r publish",
"release:major": "pnpm --filter @julio_ody/xray exec npm version major -m \"release: %s\" && git push --follow-tags && pnpm -r publish",
"xray": "pnpm --filter @julio_ody/xray run dev"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-turbo": "^2.9.16",
"prettier": "^3.8.3",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.7"
}
}