-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.25 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
{
"name": "@runtyping/mono-repo",
"version": "4.7.0",
"description": "Generate runtypes from static types & JSON schema.",
"main": "dist/index.js",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn tsc --build",
"clean": "yarn build --clean && rimraf packages/*/dist",
"scaffold": "vite-node $(yarn bin plop) --plopfile=scaffold/plopfile.ts",
"start": "yarn build --watch --preserveWatchOutput",
"test": "yarn workspaces foreach --all run test",
"prepare": "husky",
"workspaces:list": "yarn workspaces foreach --all --topological --no-private exec 'echo \"$npm_package_name|$(pwd)\"' 2>&1 | grep -v 'Process\\|exit\\|Done' | grep -v '^$'",
"workspaces:list:json": "yarn workspaces:list | jq --raw-input --slurp --compact-output 'split(\"\\n\") | map(select(length > 0) | split(\"|\") | {name: .[0], location: .[1]})'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johngeorgewright/runtyping.git"
},
"keywords": [],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johngeorgewright/runtyping/issues"
},
"homepage": "https://github.com/johngeorgewright/runtyping#readme",
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@commitlint/types": "21.0.1",
"@types/node": "24.12.4",
"@types/source-map-support": "0.5.10",
"@vitest/ui": "4.1.8",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"fast-json-patch": "3.1.1",
"fp-ts": "2.16.11",
"husky": "9.1.7",
"isbinaryfile": "6.0.0",
"lint-staged": "17.0.7",
"plop": "4.0.5",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"runtypes": "7.0.4",
"source-map-support": "0.5.21",
"typescript": "6.0.3",
"vite-node": "6.0.0",
"vitest": "4.1.8"
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx,yml,yaml}": [
"yarn prettier --write"
],
"packages/generator/src/runtypes.ts": [
"yarn workspace @runtyping/generator schema"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "2.8.1"
},
"packageManager": "yarn@4.16.0"
}