-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
64 lines (64 loc) · 1.94 KB
/
package.json
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
{
"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": "FSL-1.1-MIT",
"author": {
"email": "[email protected]",
"name": "Lubos Menus",
"url": "https://lmen.us"
},
"funding": "https://github.com/sponsors/hey-api",
"type": "module",
"scripts": {
"build": "pnpm --recursive build",
"changeset": "changeset",
"client": "sh ./scripts/client.sh",
"docs": "pnpm --filter @hey-api/docs --",
"example": "sh ./scripts/example.sh",
"format": "prettier --write .",
"lint:fix": "prettier --check --write . && eslint . --fix",
"lint": "prettier --check . && eslint .",
"openapi-ts": "pnpm --filter @hey-api/openapi-ts --",
"prepare": "husky",
"test:coverage": "pnpm --recursive test:coverage",
"test:e2e": "pnpm --recursive test:e2e",
"test:update": "pnpm --recursive test:update",
"test": "pnpm --recursive test",
"typecheck": "pnpm --recursive typecheck"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@vitest/coverage-v8": "1.6.0",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"eslint-plugin-vue": "9.23.0",
"globals": "15.8.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"tsup": "8.3.0",
"typescript": "5.5.3",
"typescript-eslint": "7.15.0",
"vitest": "1.6.0"
}
}