@hey-api/shared 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +83 -18
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +131 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -20
package/package.json
CHANGED
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hey-api/shared",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Temporary home for cross-package utilities. Contents will migrate to proper packages as architecture stabilizes.",
|
|
5
5
|
"homepage": "https://heyapi.dev/",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/hey-api/openapi-ts.git"
|
|
9
|
-
},
|
|
10
6
|
"bugs": {
|
|
11
7
|
"url": "https://github.com/hey-api/openapi-ts/issues"
|
|
12
8
|
},
|
|
13
9
|
"license": "MIT",
|
|
14
10
|
"author": {
|
|
15
|
-
"email": "lubos@heyapi.dev",
|
|
16
11
|
"name": "Hey API",
|
|
12
|
+
"email": "lubos@heyapi.dev",
|
|
17
13
|
"url": "https://heyapi.dev"
|
|
18
14
|
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/hey-api/openapi-ts.git"
|
|
18
|
+
},
|
|
19
19
|
"funding": "https://github.com/sponsors/hey-api",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"LICENSE.md",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
20
25
|
"type": "module",
|
|
21
26
|
"main": "./dist/index.mjs",
|
|
22
27
|
"types": "./dist/index.d.mts",
|
|
@@ -27,36 +32,30 @@
|
|
|
27
32
|
},
|
|
28
33
|
"./package.json": "./package.json"
|
|
29
34
|
},
|
|
30
|
-
"files": [
|
|
31
|
-
"dist",
|
|
32
|
-
"LICENSE.md",
|
|
33
|
-
"README.md"
|
|
34
|
-
],
|
|
35
|
-
"engines": {
|
|
36
|
-
"node": ">=20.19.0"
|
|
37
|
-
},
|
|
38
35
|
"dependencies": {
|
|
39
|
-
"@hey-api/json-schema-ref-parser": "1.2.
|
|
36
|
+
"@hey-api/json-schema-ref-parser": "1.2.4",
|
|
40
37
|
"ansi-colors": "4.1.3",
|
|
41
38
|
"cross-spawn": "7.0.6",
|
|
42
39
|
"open": "11.0.0",
|
|
43
40
|
"semver": "7.7.3",
|
|
44
|
-
"@hey-api/codegen-core": "0.
|
|
41
|
+
"@hey-api/codegen-core": "0.7.0",
|
|
45
42
|
"@hey-api/types": "0.1.3"
|
|
46
43
|
},
|
|
47
|
-
"peerDependencies": {
|
|
48
|
-
"typescript": ">=5.5.3"
|
|
49
|
-
},
|
|
50
44
|
"devDependencies": {
|
|
51
45
|
"@types/bun": "1.3.5",
|
|
52
46
|
"@types/cross-spawn": "6.0.6",
|
|
53
47
|
"@types/semver": "7.7.1",
|
|
54
48
|
"eslint": "9.39.1",
|
|
55
|
-
"prettier": "3.4.2",
|
|
56
49
|
"typescript": "5.9.3",
|
|
57
50
|
"yaml": "2.8.2",
|
|
58
51
|
"@config/vite-base": "0.0.1"
|
|
59
52
|
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"typescript": ">=5.5.3"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=20.19.0"
|
|
58
|
+
},
|
|
60
59
|
"scripts": {
|
|
61
60
|
"build": "tsdown && pnpm check-exports",
|
|
62
61
|
"check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm",
|