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
77 lines (77 loc) · 2.37 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.37 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
{
"name": "openapi-ts-monorepo",
"version": "0.1.0",
"description": "Public @hey-api monorepo",
"private": true,
"homepage": "https://heyapi.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hey-api/openapi-ts.git"
},
"bugs": {
"url": "https://github.com/hey-api/openapi-ts/issues"
},
"license": "MIT",
"author": {
"email": "lubos@heyapi.dev",
"name": "Hey API",
"url": "https://heyapi.dev"
},
"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": "prettier --write .",
"lint:fix": "prettier --check --write . && eslint . --fix",
"lint": "prettier --check . && eslint .",
"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"
},
"engines": {
"node": ">=20.19.0"
},
"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-config-prettier": "9.1.2",
"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",
"prettier": "3.4.2",
"rollup": "4.53.3",
"rollup-plugin-dts": "6.1.1",
"ts-node": "10.9.2",
"tsdown": "0.17.3",
"turbo": "2.6.3",
"typescript": "5.9.3",
"typescript-eslint": "8.29.1",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.25.0"
}