-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "orpc-json-diff",
"version": "0.1.10",
"repository": "https://github.com/NeilTheFisher/orpc-json-diff",
"type": "module",
"exports": {
"./server": {
"types": "./dist/server.d.mts",
"import": "./dist/server.mjs"
},
"./client": {
"types": "./dist/client.d.mts",
"import": "./dist/client.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown --outDir dist --minify --dts --target es2024 src/server.ts src/client.ts",
"dev": "tsdown --watch",
"format": "bun run format:sort-package-json && timeout 4 biome check --write .",
"format:sort-package-json": "bun x --bun sort-package-json@3.5.0 'package.json'",
"lint": "concurrently --names \"tsgo,biome,oxlint\" --prefix-colors auto \"tsgo --noEmit\" \"biome check .\" \"oxlint --type-aware\""
},
"dependencies": {
"@orpc/client": "^1.12.2",
"@orpc/server": "^1.12.2",
"@orpc/shared": "^1.12.2",
"fast-json-patch": "^3.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@typescript/native-preview": "^7.0.0-dev.20251209.1",
"concurrently": "^9.2.1",
"oxlint": "^1.32.0",
"oxlint-tsgolint": "^0.8.4",
"tsdown": "^0.17.2",
"typescript": "^5.9.3"
}
}