forked from hey-api/openapi-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.8 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
{
"name": "openapi-ts-monorepo",
"version": "0.1.0",
"description": "Public @hey-api monorepo",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://heyapi.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/hey-api/openapi-ts.git"
},
"bugs": {
"url": "https://github.com/hey-api/openapi-ts/issues"
},
"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": {
"@changesets/cli": "2.27.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@svitejs/changesets-changelog-github-compact": "1.1.0",
"@types/node": "20.12.12",
"@vitest/coverage-v8": "1.6.0",
"eslint": "9.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"globals": "15.3.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"rollup": "4.17.2",
"rollup-plugin-dts": "6.1.1",
"typescript": "5.4.5",
"typescript-eslint": "7.10.0",
"vitest": "1.6.0"
}
}