@powerlines/plugin-hey-api 0.1.419 → 0.1.423
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/package.json +22 -75
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-hey-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.423",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to generate project code using Hey API.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "github",
|
|
8
8
|
"url": "https://github.com/storm-software/powerlines.git",
|
|
9
|
-
"directory": "packages/plugin-hey-api"
|
|
9
|
+
"directory": "packages/plugins/plugin-hey-api"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://stormsoftware.com",
|
|
12
12
|
"bugs": {
|
|
@@ -41,96 +41,43 @@
|
|
|
41
41
|
"main": "./dist/index.cjs",
|
|
42
42
|
"module": "./dist/index.mjs",
|
|
43
43
|
"exports": {
|
|
44
|
-
".": {
|
|
45
|
-
"require": {
|
|
46
|
-
"types": "./dist/index.d.cts",
|
|
47
|
-
"default": "./dist/index.cjs"
|
|
48
|
-
},
|
|
49
|
-
"import": {
|
|
50
|
-
"types": "./dist/index.d.mts",
|
|
51
|
-
"default": "./dist/index.mjs"
|
|
52
|
-
},
|
|
53
|
-
"default": {
|
|
54
|
-
"types": "./dist/index.d.mts",
|
|
55
|
-
"default": "./dist/index.mjs"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
44
|
+
".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" },
|
|
58
45
|
"./helpers": {
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
"default": "./dist/helpers/index.cjs"
|
|
62
|
-
},
|
|
63
|
-
"import": {
|
|
64
|
-
"types": "./dist/helpers/index.d.mts",
|
|
65
|
-
"default": "./dist/helpers/index.mjs"
|
|
66
|
-
},
|
|
67
|
-
"default": {
|
|
68
|
-
"types": "./dist/helpers/index.d.mts",
|
|
69
|
-
"default": "./dist/helpers/index.mjs"
|
|
70
|
-
}
|
|
46
|
+
"import": "./dist/helpers/index.mjs",
|
|
47
|
+
"require": "./dist/helpers/index.cjs"
|
|
71
48
|
},
|
|
72
49
|
"./helpers/create-operation-id": {
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"default": "./dist/helpers/create-operation-id.cjs"
|
|
76
|
-
},
|
|
77
|
-
"import": {
|
|
78
|
-
"types": "./dist/helpers/create-operation-id.d.mts",
|
|
79
|
-
"default": "./dist/helpers/create-operation-id.mjs"
|
|
80
|
-
},
|
|
81
|
-
"default": {
|
|
82
|
-
"types": "./dist/helpers/create-operation-id.d.mts",
|
|
83
|
-
"default": "./dist/helpers/create-operation-id.mjs"
|
|
84
|
-
}
|
|
50
|
+
"import": "./dist/helpers/create-operation-id.mjs",
|
|
51
|
+
"require": "./dist/helpers/create-operation-id.cjs"
|
|
85
52
|
},
|
|
86
|
-
"./package.json": "./package.json",
|
|
87
53
|
"./types": {
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
"default": "./dist/types/index.cjs"
|
|
91
|
-
},
|
|
92
|
-
"import": {
|
|
93
|
-
"types": "./dist/types/index.d.mts",
|
|
94
|
-
"default": "./dist/types/index.mjs"
|
|
95
|
-
},
|
|
96
|
-
"default": {
|
|
97
|
-
"types": "./dist/types/index.d.mts",
|
|
98
|
-
"default": "./dist/types/index.mjs"
|
|
99
|
-
}
|
|
54
|
+
"import": "./dist/types/index.mjs",
|
|
55
|
+
"require": "./dist/types/index.cjs"
|
|
100
56
|
},
|
|
101
57
|
"./types/plugin": {
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"import": {
|
|
107
|
-
"types": "./dist/types/plugin.d.mts",
|
|
108
|
-
"default": "./dist/types/plugin.mjs"
|
|
109
|
-
},
|
|
110
|
-
"default": {
|
|
111
|
-
"types": "./dist/types/plugin.d.mts",
|
|
112
|
-
"default": "./dist/types/plugin.mjs"
|
|
113
|
-
}
|
|
114
|
-
}
|
|
58
|
+
"import": "./dist/types/plugin.mjs",
|
|
59
|
+
"require": "./dist/types/plugin.cjs"
|
|
60
|
+
},
|
|
61
|
+
"./package.json": "./package.json"
|
|
115
62
|
},
|
|
116
63
|
"typings": "dist/index.d.mts",
|
|
117
64
|
"files": ["dist/**/*"],
|
|
118
65
|
"keywords": ["hey-api", "powerlines", "storm-software", "powerlines-plugin"],
|
|
119
66
|
"dependencies": {
|
|
120
67
|
"@hey-api/openapi-ts": "^0.88.2",
|
|
121
|
-
"@stryke/path": "^0.
|
|
122
|
-
"@stryke/string-format": "^0.17.
|
|
123
|
-
"@stryke/type-checks": "^0.6.
|
|
124
|
-
"@stryke/types": "^0.12.
|
|
68
|
+
"@stryke/path": "^0.29.2",
|
|
69
|
+
"@stryke/string-format": "^0.17.17",
|
|
70
|
+
"@stryke/type-checks": "^0.6.8",
|
|
71
|
+
"@stryke/types": "^0.12.3",
|
|
125
72
|
"defu": "^6.1.7",
|
|
126
|
-
"jiti": "^2.
|
|
127
|
-
"powerlines": "^0.47.
|
|
73
|
+
"jiti": "^2.7.0",
|
|
74
|
+
"powerlines": "^0.47.8"
|
|
128
75
|
},
|
|
129
76
|
"devDependencies": {
|
|
130
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
131
|
-
"@types/node": "^25.
|
|
77
|
+
"@powerlines/plugin-plugin": "^0.12.420",
|
|
78
|
+
"@types/node": "^25.7.0"
|
|
132
79
|
},
|
|
133
80
|
"publishConfig": { "access": "public" },
|
|
134
81
|
"types": "./dist/index.d.cts",
|
|
135
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "e5d8383bd361a99563985879776392fb679cbbe4"
|
|
136
83
|
}
|