-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.17 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@openmirai/typeforge",
"version": "0.3.2",
"description": "Typeforge: headless OpenAPI to TypeScript codegen CLI and HTTPFetch runtime",
"homepage": "https://github.com/openmirai/typeforge#readme",
"bugs": {
"url": "https://github.com/openmirai/typeforge/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openmirai/typeforge.git"
},
"bin": {
"typeforge": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./adapters/axios": {
"types": "./dist/adapters/axios/index.d.ts",
"import": "./dist/adapters/axios/index.js",
"default": "./dist/adapters/axios/index.js"
},
"./adapters/fetch": {
"types": "./dist/adapters/fetch/index.d.ts",
"import": "./dist/adapters/fetch/index.js",
"default": "./dist/adapters/fetch/index.js"
},
"./http": {
"types": "./dist/http/types.d.ts",
"import": "./dist/http/types.js",
"default": "./dist/http/types.js"
},
"./validation/zod": {
"types": "./dist/validation/zod.d.ts",
"import": "./dist/validation/zod.js",
"default": "./dist/validation/zod.js"
},
"./routes": {
"types": "./dist/routes/index.d.ts",
"import": "./dist/routes/index.js",
"default": "./dist/routes/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsdown",
"check:package": "node scripts/check-package.mjs",
"typecheck": "tsc -p tsconfig.json --pretty false && tsc -p tsconfig.tools.json --pretty false",
"format": "oxfmt --check .",
"format:fix": "oxfmt --write .",
"lint": "oxlint . && oxfmt --check .",
"lint:fix": "oxlint --fix --fix-suggestions . && oxfmt --write .",
"pretest": "pnpm build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"hooks:install": "git config --local core.hooksPath \"$(git rev-parse --absolute-git-dir)/hooks\" && lefthook install --force",
"release": "release-it",
"verify": "pnpm format && pnpm lint && pnpm typecheck && pnpm build && pnpm check:package && pnpm test:coverage"
},
"dependencies": {
"chalk": "6.0.0"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@commitlint/types": "21.2.0",
"@tsconfig/node24": "24.0.5",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.11",
"axios": "^1.19.0",
"lefthook": "2.1.10",
"oxfmt": "0.64.0",
"oxlint": "1.79.0",
"release-it": "21.0.2",
"tsdown": "0.22.14",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.11"
},
"peerDependencies": {
"axios": "^1"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621"
}