@storm-software/untyped 0.0.1
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/LICENSE +201 -0
- package/README.md +275 -0
- package/bin/untyped.d.mts +1 -0
- package/bin/untyped.d.ts +1 -0
- package/bin/untyped.js +1343 -0
- package/bin/untyped.mjs +1322 -0
- package/dist/chunk-4E62JEHL.js +50 -0
- package/dist/chunk-64SOMW7A.js +38 -0
- package/dist/chunk-BBZKEOA5.js +34 -0
- package/dist/chunk-CSRZXE4P.mjs +69 -0
- package/dist/chunk-CVBHL6A3.mjs +387 -0
- package/dist/chunk-IZL7IEIU.mjs +50 -0
- package/dist/chunk-NWAI6PTH.mjs +38 -0
- package/dist/chunk-ODWHGK5N.js +73 -0
- package/dist/chunk-PSNCUPEF.js +387 -0
- package/dist/chunk-RAX4M7XF.mjs +34 -0
- package/dist/chunk-RXZL622N.js +69 -0
- package/dist/chunk-U4YLQDJK.js +1 -0
- package/dist/chunk-UU4FFJSX.mjs +73 -0
- package/dist/chunk-ZHPKHX4S.mjs +0 -0
- package/dist/generate.d.mts +10 -0
- package/dist/generate.d.ts +10 -0
- package/dist/generate.js +11 -0
- package/dist/generate.mjs +11 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +28 -0
- package/dist/index.mjs +28 -0
- package/dist/types-DkqO6Ujr.d.mts +1185 -0
- package/dist/types-DkqO6Ujr.d.ts +1185 -0
- package/dist/utilities.d.mts +12 -0
- package/dist/utilities.d.ts +12 -0
- package/dist/utilities.js +6 -0
- package/dist/utilities.mjs +6 -0
- package/package.json +1 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { S as StormConfig } from './types-DkqO6Ujr.js';
|
|
2
|
+
import 'zod';
|
|
3
|
+
|
|
4
|
+
declare const getGenerateAction: (config: StormConfig) => (options: {
|
|
5
|
+
entry: string | string[];
|
|
6
|
+
outputPath: string;
|
|
7
|
+
jsonSchema: string;
|
|
8
|
+
}) => Promise<void>;
|
|
9
|
+
|
|
10
|
+
export { getGenerateAction };
|
package/dist/generate.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkODWHGK5Njs = require('./chunk-ODWHGK5N.js');
|
|
4
|
+
require('./chunk-4E62JEHL.js');
|
|
5
|
+
require('./chunk-BBZKEOA5.js');
|
|
6
|
+
require('./chunk-RXZL622N.js');
|
|
7
|
+
require('./chunk-PSNCUPEF.js');
|
|
8
|
+
require('./chunk-64SOMW7A.js');
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
exports.getGenerateAction = _chunkODWHGK5Njs.getGenerateAction;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getGenerateAction
|
|
3
|
+
} from "./chunk-UU4FFJSX.mjs";
|
|
4
|
+
import "./chunk-IZL7IEIU.mjs";
|
|
5
|
+
import "./chunk-RAX4M7XF.mjs";
|
|
6
|
+
import "./chunk-CSRZXE4P.mjs";
|
|
7
|
+
import "./chunk-CVBHL6A3.mjs";
|
|
8
|
+
import "./chunk-NWAI6PTH.mjs";
|
|
9
|
+
export {
|
|
10
|
+
getGenerateAction
|
|
11
|
+
};
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { getGenerateAction } from './generate.mjs';
|
|
2
|
+
export { generateDeclaration, generateDeclarationFile } from './generators/dts.mjs';
|
|
3
|
+
export { generateJsonSchemaFile } from './generators/json-schema.mjs';
|
|
4
|
+
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.mjs';
|
|
5
|
+
export { getOutputFile } from './utilities.mjs';
|
|
6
|
+
import './types-DkqO6Ujr.mjs';
|
|
7
|
+
import 'zod';
|
|
8
|
+
import 'glob';
|
|
9
|
+
import 'untyped';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { getGenerateAction } from './generate.js';
|
|
2
|
+
export { generateDeclaration, generateDeclarationFile } from './generators/dts.js';
|
|
3
|
+
export { generateJsonSchemaFile } from './generators/json-schema.js';
|
|
4
|
+
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.js';
|
|
5
|
+
export { getOutputFile } from './utilities.js';
|
|
6
|
+
import './types-DkqO6Ujr.js';
|
|
7
|
+
import 'zod';
|
|
8
|
+
import 'glob';
|
|
9
|
+
import 'untyped';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkODWHGK5Njs = require('./chunk-ODWHGK5N.js');
|
|
4
|
+
require('./chunk-U4YLQDJK.js');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
var _chunk4E62JEHLjs = require('./chunk-4E62JEHL.js');
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
var _chunkBBZKEOA5js = require('./chunk-BBZKEOA5.js');
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
var _chunkRXZL622Njs = require('./chunk-RXZL622N.js');
|
|
16
|
+
require('./chunk-PSNCUPEF.js');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var _chunk64SOMW7Ajs = require('./chunk-64SOMW7A.js');
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
exports.generateDeclaration = _chunk4E62JEHLjs.generateDeclaration; exports.generateDeclarationFile = _chunk4E62JEHLjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkBBZKEOA5js.generateJsonSchemaFile; exports.generateMarkdown = _chunkRXZL622Njs.generateMarkdown; exports.generateMarkdownFile = _chunkRXZL622Njs.generateMarkdownFile; exports.getGenerateAction = _chunkODWHGK5Njs.getGenerateAction; exports.getOutputFile = _chunk64SOMW7Ajs.getOutputFile;
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getGenerateAction
|
|
3
|
+
} from "./chunk-UU4FFJSX.mjs";
|
|
4
|
+
import "./chunk-ZHPKHX4S.mjs";
|
|
5
|
+
import {
|
|
6
|
+
generateDeclaration,
|
|
7
|
+
generateDeclarationFile
|
|
8
|
+
} from "./chunk-IZL7IEIU.mjs";
|
|
9
|
+
import {
|
|
10
|
+
generateJsonSchemaFile
|
|
11
|
+
} from "./chunk-RAX4M7XF.mjs";
|
|
12
|
+
import {
|
|
13
|
+
generateMarkdown,
|
|
14
|
+
generateMarkdownFile
|
|
15
|
+
} from "./chunk-CSRZXE4P.mjs";
|
|
16
|
+
import "./chunk-CVBHL6A3.mjs";
|
|
17
|
+
import {
|
|
18
|
+
getOutputFile
|
|
19
|
+
} from "./chunk-NWAI6PTH.mjs";
|
|
20
|
+
export {
|
|
21
|
+
generateDeclaration,
|
|
22
|
+
generateDeclarationFile,
|
|
23
|
+
generateJsonSchemaFile,
|
|
24
|
+
generateMarkdown,
|
|
25
|
+
generateMarkdownFile,
|
|
26
|
+
getGenerateAction,
|
|
27
|
+
getOutputFile
|
|
28
|
+
};
|