-
-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.57 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.57 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
{
"name": "openapi-ts-monorepo",
"version": "0.1.0",
"private": true,
"description": "Public @hey-api monorepo",
"homepage": "https://heyapi.dev",
"bugs": {
"url": "https://github.com/hey-api/openapi-ts/issues"
},
"license": "MIT",
"author": {
"name": "Hey API",
"email": "lubos@heyapi.dev",
"url": "https://heyapi.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hey-api/openapi-ts.git"
},
"funding": "https://github.com/sponsors/hey-api",
"type": "module",
"scripts": {
"build": "turbo run build",
"changelog:assemble": "tsx scripts/changelog/assemble.ts",
"changelog:release:name": "tsx scripts/changelog/release-name.ts",
"changelog:release:notes": "tsx scripts/changelog/release-notes.ts",
"changelog:release:tag": "tsx scripts/changelog/release-tag.ts",
"changelog:version": "changeset version && pnpm changelog:assemble",
"changeset": "changeset",
"examples:check": "sh ./scripts/examples-check.sh",
"examples:generate": "sh ./scripts/examples-generate.sh",
"format": "oxfmt .",
"format:next": "oxfmt . && uv run ruff format packages/openapi-python/src/py-compiler/__snapshots__",
"lint": "oxfmt --check . && eslint .",
"lint:next": "oxfmt --check . && eslint . && uv run ruff check packages/openapi-python/src/py-compiler/__snapshots__",
"lint:fix": "oxfmt . && eslint . --fix",
"lint:fix:next": "oxfmt . && eslint . --fix && uv run ruff check --fix packages/openapi-python/src/py-compiler/__snapshots__",
"prepare": "husky",
"readme:sync": "tsx scripts/readme-sync.ts",
"test:changelog": "vitest run __tests__/*.test.ts",
"test:changelog:watch": "vitest watch __tests__/*.test.ts",
"test:coverage": "turbo run build && vitest run --coverage",
"test:update": "turbo run build && vitest watch --update",
"test:watch": "turbo run build && vitest watch",
"test": "turbo run build && vitest",
"typecheck": "turbo run typecheck",
"td": "turbo run dev --filter",
"tt": "turbo run build && vitest run --project",
"tw": "turbo run build && vitest watch --project",
"tu": "turbo run build && vitest watch --update --project",
"tb": "turbo run build --filter",
"ty": "turbo run typecheck --filter",
"dev:ts": "cd dev && HEYAPI_CODEGEN_ENV=development tsx watch --clear-screen=false ../packages/openapi-ts/src/run.ts",
"dev:py": "cd dev && HEYAPI_CODEGEN_ENV=development tsx watch --clear-screen=false ../packages/openapi-python/src/run.ts"
},
"devDependencies": {
"@arethetypeswrong/core": "0.18.2",
"@changesets/cli": "2.30.0",
"@changesets/get-github-info": "0.8.0",
"@changesets/parse": "0.4.3",
"@changesets/types": "6.1.0",
"@eslint/js": "9.39.2",
"@hey-api/custom-client": "workspace:*",
"@hey-api/openapi-ts": "workspace:*",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript/native-preview": "7.0.0-dev.20260415.1",
"@vitest/coverage-v8": "4.1.0",
"eslint": "9.39.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-destructure-keys": "3.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-vue": "10.7.0",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"oxfmt": "0.45.0",
"publint": "0.3.18",
"tsdown": "0.21.8",
"tsx": "4.21.0",
"turbo": "2.9.6",
"typescript": "6.0.2",
"typescript-eslint": "8.54.0",
"vitest": "4.1.0"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@10.33.0"
}