-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "zagora",
"version": "1.0.0-next.8",
"license": "Apache-2.0",
"description": "A minimalist & robust way to create type-safe and error-safe never throwing functions & libraries in TypeScript - with input/output validation and typed errors. Based on StandardSchema-compliant validation libraries. No batteries, no routers, it's just functions that you can export and use. Simple but robust alternative to oRPC and tRPC, no network layer.",
"repository": {
"type": "git",
"url": "https://github.com/tunnckoCore/zagora.git"
},
"workspaces": {
"packages": [
".",
"apps/*"
]
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"files": [
"dist"
],
"packageManager": "bun@1.3.2",
"type": "module",
"types": "dist/index.d.ts",
"main": "src/index.ts",
"module": "src/index.ts",
"overrides": {
"remark-shiki-twoslash>shiki": "^0.14.1",
"shiki-twoslash>shiki": "^0.14.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"import": "./dist/errors.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js"
},
"./package.json": "./package.json"
},
"scripts": {
"vitepress:dev": "vitepress dev",
"vitepress:build": "vitepress build",
"vitepress:preview": "vitepress preview",
"prebuild": "bun run check:types",
"build": "bunx tsdown",
"check": "bun run check:copy-rules && bun run check:format && bun run check:types && bun run check:repo",
"check:copy-rules": "cp AGENTS.md .rules/zagora.md",
"check:format": "bunx @biomejs/biome check --fix --unsafe",
"check:types": "bunx tsgo-dev -p ./tsconfig.json",
"check:repo": "bunx sherif -r root-package-dependencies -r root-package-private-field",
"test:cov-spa": "vite serve ./coverage",
"test:gen-cov": "bun scripts/coverage-badge.ts",
"test": "COV=1 vitest run",
"ci:test": "vitest run --changed",
"ci:typecheck": "bun run check:types",
"ci:lint": "bunx @biomejs/biome lint --max-diagnostics=none",
"release": "bun run ci:lint && bun run check:types && bun run ci:test && bun run test:gen-cov && bun run build",
"prepublishOnly": "bun run release",
"docs:dev": "bun run --cwd apps/web dev",
"docs:build": "bun run --cwd apps/web build",
"docs:preview": "bun run --cwd apps/web preview"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@shikijs/vitepress-twoslash": "^3.21.0",
"@types/bun": "^1.3.3",
"@vitest/coverage-v8": "4.0.13",
"arktype": "2.1.27",
"biome-config-xaxa": "^0.2.1",
"bun-types": "^1.3.3",
"is-ci": "^4.1.0",
"remark-shiki-twoslash": "^3.1.3",
"sherif": "^1.9.0",
"shiki": "^0.14.1",
"shiki-twoslash": "^3.1.2",
"tsdown": "^0.16.6",
"tsgo-dev": "^2025.11.23",
"typescript": "5.9.3",
"valibot": "^1.1.0",
"vite": "^7.2.4",
"vitepress": "^2.0.0-alpha.15",
"vitest": "^4.0.13",
"zod": "^4.1.12"
},
"keywords": [
"minimal",
"rpc",
"procedures",
"typescript",
"typesafe",
"type-safe",
"error-safe",
"functions",
"funcs",
"fn"
]
}