forked from hey-api/openapi-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.04 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.04 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
{
"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",
"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/ts-python/__snapshots__",
"lint": "oxfmt --check . && eslint .",
"lint:next": "oxfmt --check . && eslint . && uv run ruff check packages/openapi-python/src/ts-python/__snapshots__",
"lint:fix": "oxfmt . && eslint . --fix",
"lint:fix:next": "oxfmt . && eslint . --fix && uv run ruff check --fix packages/openapi-python/src/ts-python/__snapshots__",
"prepare": "husky",
"test:changelog": "vitest run __tests__/*.test.ts",
"test:changelog:watch": "vitest watch __tests__/*.test.ts",
"test:coverage": "turbo run test:coverage",
"test:update": "turbo run test:update",
"test:watch": "turbo run test:watch",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"tt": "turbo run test --filter",
"tw": "turbo run test:watch --filter",
"tu": "turbo run test:update --filter",
"tb": "turbo run build --filter",
"ty": "turbo run typecheck --filter",
"dev:ts": "cd dev && tsx watch --clear-screen=false ../packages/openapi-ts/src/run.ts",
"dev:py": "cd dev && tsx watch --clear-screen=false ../packages/openapi-python/src/run.ts"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@changesets/cli": "2.29.8",
"@changesets/get-github-info": "0.7.0",
"@changesets/parse": "0.4.2",
"@changesets/types": "6.1.0",
"@config/vite-base": "workspace:*",
"@eslint/js": "9.39.1",
"@hey-api/custom-client": "workspace:*",
"@hey-api/openapi-ts": "workspace:*",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.29.1",
"@vitest/coverage-v8": "3.2.4",
"dotenv": "17.2.3",
"eslint": "9.39.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-vue": "9.33.0",
"globals": "16.5.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"oxfmt": "0.27.0",
"rollup": "4.56.0",
"rollup-plugin-dts": "6.1.1",
"ts-node": "10.9.2",
"tsdown": "0.18.4",
"tsx": "4.21.0",
"turbo": "2.8.0",
"typescript": "5.9.3",
"typescript-eslint": "8.29.1",
"vitest": "3.2.4"
},
"engines": {
"node": ">=20.19.0"
},
"packageManager": "pnpm@10.28.2"
}