-
-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "@hey-api/codegen-core",
"version": "0.6.0",
"description": "🧱 TypeScript framework for generating files.",
"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",
"keywords": [
"codegen",
"generator",
"javascript",
"node",
"typescript"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsdown && pnpm check-exports",
"check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm",
"dev": "tsdown --watch",
"prepublishOnly": "pnpm build",
"test:coverage": "vitest run --coverage",
"test:update": "vitest watch --update",
"test:watch": "vitest watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@hey-api/types": "workspace:*",
"ansi-colors": "4.1.3",
"c12": "3.3.3",
"color-support": "1.1.3"
},
"peerDependencies": {
"typescript": ">=5.5.3"
},
"devDependencies": {
"@config/vite-base": "workspace:*",
"eslint": "9.39.1",
"prettier": "3.8.1",
"typescript": "5.9.3"
}
}