@twin.org/ts-to-schema 0.0.1-next.3 → 0.0.1-next.4
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +1 -1
- package/package.json +2 -31
package/dist/cjs/index.cjs
CHANGED
|
@@ -233,7 +233,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
233
233
|
return this.execute({
|
|
234
234
|
title: "TWIN TypeScript To Schema",
|
|
235
235
|
appName: "ts-to-schema",
|
|
236
|
-
version: "0.0.1-next.
|
|
236
|
+
version: "0.0.1-next.4",
|
|
237
237
|
icon: "⚙️ ",
|
|
238
238
|
supportsEnvFiles: false
|
|
239
239
|
}, localesDirectory ?? path.join(path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)))), "../locales"), argv);
|
package/dist/esm/index.mjs
CHANGED
|
@@ -230,7 +230,7 @@ class CLI extends CLIBase {
|
|
|
230
230
|
return this.execute({
|
|
231
231
|
title: "TWIN TypeScript To Schema",
|
|
232
232
|
appName: "ts-to-schema",
|
|
233
|
-
version: "0.0.1-next.
|
|
233
|
+
version: "0.0.1-next.4",
|
|
234
234
|
icon: "⚙️ ",
|
|
235
235
|
supportsEnvFiles: false
|
|
236
236
|
}, localesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), "../locales"), argv);
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/ts-to-schema",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.4",
|
|
4
4
|
"description": "Tool to convert TypeScript definitions to JSON schemas",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,44 +13,15 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"clean": "rimraf dist coverage",
|
|
18
|
-
"build": "tspc",
|
|
19
|
-
"merge-locales": "merge-locales",
|
|
20
|
-
"test": "vitest --run --config ./vitest.config.ts --no-cache",
|
|
21
|
-
"coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
|
|
22
|
-
"bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
|
|
23
|
-
"bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
|
|
24
|
-
"bundle": "npm run bundle:esm && npm run bundle:cjs",
|
|
25
|
-
"docs:clean": "rimraf docs/reference",
|
|
26
|
-
"docs:generate": "typedoc",
|
|
27
|
-
"docs": "npm run docs:clean && npm run docs:generate",
|
|
28
|
-
"dist": "npm run clean && npm run build && npm run merge-locales && npm run test && npm run bundle && npm run docs"
|
|
29
|
-
},
|
|
30
16
|
"dependencies": {
|
|
31
17
|
"@twin.org/cli-core": "next",
|
|
32
18
|
"@twin.org/core": "next",
|
|
33
|
-
"@twin.org/nameof": "0.0.1-next.
|
|
19
|
+
"@twin.org/nameof": "0.0.1-next.4",
|
|
34
20
|
"commander": "12.1.0",
|
|
35
21
|
"glob": "11.0.0",
|
|
36
22
|
"jsonschema": "1.4.1",
|
|
37
23
|
"ts-json-schema-generator": "2.4.0-next.1"
|
|
38
24
|
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@twin.org/merge-locales": "0.0.1-next.3",
|
|
41
|
-
"@twin.org/nameof-transformer": "0.0.1-next.3",
|
|
42
|
-
"@types/node": "22.5.5",
|
|
43
|
-
"@vitest/coverage-v8": "2.1.1",
|
|
44
|
-
"copyfiles": "2.4.1",
|
|
45
|
-
"rimraf": "6.0.1",
|
|
46
|
-
"rollup": "4.21.3",
|
|
47
|
-
"rollup-plugin-typescript2": "0.36.0",
|
|
48
|
-
"ts-patch": "3.2.1",
|
|
49
|
-
"typedoc": "0.26.7",
|
|
50
|
-
"typedoc-plugin-markdown": "4.2.7",
|
|
51
|
-
"typescript": "5.6.2",
|
|
52
|
-
"vitest": "2.1.1"
|
|
53
|
-
},
|
|
54
25
|
"main": "./dist/cjs/index.cjs",
|
|
55
26
|
"module": "./dist/esm/index.mjs",
|
|
56
27
|
"types": "./dist/types/index.d.ts",
|