-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.98 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
{
"name": "mjst",
"private": true,
"workspaces": [
"packages/*"
],
"catalog": {
"json-schema-typed": "^8.0.1"
},
"type": "module",
"keywords": [
"json",
"validation",
"parsing",
"parser",
"schema",
"typescript",
"validator"
],
"author": "amritk",
"license": "MIT",
"scripts": {
"generate-readmes": "(cd packages/cli && bun run generate-readme) && (cd packages/generate-parsers && bun run generate-readme) && bun run generate-llms",
"generate-llms": "bun run scripts/generate-llms.ts",
"prebuild": "bun run --filter='@amritk/runtime-validators' build",
"build": "bun run --workspaces build",
"dev": "bun --conditions development packages/cli/src/cli.ts",
"types:check": "bun run --workspaces types:check",
"lint:check": "bun run check",
"check": "biome check .",
"format": "biome check --write --formatter-enabled=true --linter-enabled=false .",
"lint": "biome lint .",
"pretest": "bun run --filter='@amritk/runtime-validators' build",
"test": "bun run --workspaces test",
"test:seq": "bun run --workspaces --sequential test",
"test:dist": "vitest run --config vitest.dist.config.ts",
"release:version": "changeset version && bun install --no-frozen-lockfile",
"release:publish": "bun run scripts/resolve-workspace-protocol.ts && bun run scripts/strip-development-exports.ts && bun run scripts/copy-license.ts && changeset publish"
},
"devDependencies": {
"@amritk/helpers": "workspace:*",
"@biomejs/biome": "2.4.4",
"@changesets/cli": "^2.30.0",
"@sinclair/typebox": "^0.34.49",
"@types/node": "^25.9.1",
"@typescript/native-preview": "^7.0.0-dev.20260524.1",
"@valibot/to-json-schema": "^1.7.0",
"effect": "^3.21.2",
"esbuild": "^0.28.1",
"ts-go": "^1.0.4",
"tsc-alias": "^1.8.17",
"typescript": "^5",
"valibot": "^1.4.0",
"vitest": "^4.1.5",
"zod": "^4.4.3",
"zod-to-json-schema": "^3.24.6",
"zod-v3": "npm:zod@^3.25.76"
}
}