typia 6.1.1-dev.20240620 → 6.1.1-dev.20240620-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/package.json +108 -108
package/package.json
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "typia",
|
|
3
|
-
"version": "6.1.1-dev.20240620",
|
|
4
|
-
"description": "Superfast runtime validators with only one line",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"typings": "lib/index.d.ts",
|
|
7
|
-
"module": "lib/index.mjs",
|
|
8
|
-
"bin": {
|
|
9
|
-
"typia": "./lib/executable/typia.js"
|
|
10
|
-
},
|
|
11
|
-
"tsp": {
|
|
12
|
-
"tscOptions": {
|
|
13
|
-
"parseAllJsDoc": true
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"test": "npm run package:tgz",
|
|
18
|
-
"test:bun": "bun run deploy/bun.ts",
|
|
19
|
-
"test:template": "npm run --tag test --template",
|
|
20
|
-
"-------------------------------------------------": "",
|
|
21
|
-
"build": "rimraf lib && tsc && rollup -c",
|
|
22
|
-
"dev": "rimraf lib && tsc --watch",
|
|
23
|
-
"eslint": "eslint ./**/*.ts",
|
|
24
|
-
"eslint:fix": "eslint ./**/*.ts --fix",
|
|
25
|
-
"prettier": "prettier src --write",
|
|
26
|
-
"------------------------------------------------": "",
|
|
27
|
-
"package:latest": "ts-node deploy --tag latest",
|
|
28
|
-
"package:next": "ts-node deploy --tag next",
|
|
29
|
-
"package:patch": "ts-node deploy --tag patch",
|
|
30
|
-
"package:tgz": "ts-node deploy --tag tgz",
|
|
31
|
-
"package:deprecate": "npm deprecate typescript-json \"Renamed to typia\""
|
|
32
|
-
},
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "https://github.com/samchon/typia"
|
|
36
|
-
},
|
|
37
|
-
"keywords": [
|
|
38
|
-
"fast",
|
|
39
|
-
"json",
|
|
40
|
-
"stringify",
|
|
41
|
-
"typescript",
|
|
42
|
-
"transform",
|
|
43
|
-
"ajv",
|
|
44
|
-
"io-ts",
|
|
45
|
-
"schema",
|
|
46
|
-
"jsonschema",
|
|
47
|
-
"generator",
|
|
48
|
-
"assert",
|
|
49
|
-
"clone",
|
|
50
|
-
"is",
|
|
51
|
-
"validate",
|
|
52
|
-
"equal",
|
|
53
|
-
"runtime",
|
|
54
|
-
"type",
|
|
55
|
-
"typebox",
|
|
56
|
-
"checker",
|
|
57
|
-
"validator",
|
|
58
|
-
"safe",
|
|
59
|
-
"parse",
|
|
60
|
-
"prune",
|
|
61
|
-
"random"
|
|
62
|
-
],
|
|
63
|
-
"author": "Jeongho Nam",
|
|
64
|
-
"license": "MIT",
|
|
65
|
-
"bugs": {
|
|
66
|
-
"url": "https://github.com/samchon/typia/issues"
|
|
67
|
-
},
|
|
68
|
-
"homepage": "https://typia.io",
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"@samchon/openapi": "0.1.22",
|
|
71
|
-
"commander": "^10.0.0",
|
|
72
|
-
"comment-json": "^4.2.3",
|
|
73
|
-
"inquirer": "^8.2.5",
|
|
74
|
-
"randexp": "^0.5.3"
|
|
75
|
-
},
|
|
76
|
-
"peerDependencies": {
|
|
77
|
-
"typescript": ">=4.8.0 <5.6.0"
|
|
78
|
-
},
|
|
79
|
-
"devDependencies": {
|
|
80
|
-
"@rollup/plugin-commonjs": "^26.0.1",
|
|
81
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
82
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
83
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
84
|
-
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
85
|
-
"@types/inquirer": "^8.2.5",
|
|
86
|
-
"@types/node": "^18.15.12",
|
|
87
|
-
"@types/ts-expose-internals": "npm:ts-expose-internals@5.4.2",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
89
|
-
"@typescript-eslint/parser": "^7.1.1",
|
|
90
|
-
"chalk": "^4.0.0",
|
|
91
|
-
"prettier": "^3.2.5",
|
|
92
|
-
"rimraf": "^5.0.5",
|
|
93
|
-
"rollup": "^4.18.0",
|
|
94
|
-
"suppress-warnings": "^1.0.2",
|
|
95
|
-
"ts-node": "^10.9.2",
|
|
96
|
-
"typescript": "^5.4.5"
|
|
97
|
-
},
|
|
98
|
-
"stackblitzs": {
|
|
99
|
-
"startCommand": "npm install && npm run test"
|
|
100
|
-
},
|
|
101
|
-
"files": [
|
|
102
|
-
"LICENSE",
|
|
103
|
-
"README.md",
|
|
104
|
-
"package.json",
|
|
105
|
-
"lib",
|
|
106
|
-
"src"
|
|
107
|
-
]
|
|
108
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "typia",
|
|
3
|
+
"version": "6.1.1-dev.20240620-2",
|
|
4
|
+
"description": "Superfast runtime validators with only one line",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"typings": "lib/index.d.ts",
|
|
7
|
+
"module": "lib/index.mjs",
|
|
8
|
+
"bin": {
|
|
9
|
+
"typia": "./lib/executable/typia.js"
|
|
10
|
+
},
|
|
11
|
+
"tsp": {
|
|
12
|
+
"tscOptions": {
|
|
13
|
+
"parseAllJsDoc": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "npm run package:tgz",
|
|
18
|
+
"test:bun": "bun run deploy/bun.ts",
|
|
19
|
+
"test:template": "npm run --tag test --template",
|
|
20
|
+
"-------------------------------------------------": "",
|
|
21
|
+
"build": "rimraf lib && tsc && rollup -c",
|
|
22
|
+
"dev": "rimraf lib && tsc --watch",
|
|
23
|
+
"eslint": "eslint ./**/*.ts",
|
|
24
|
+
"eslint:fix": "eslint ./**/*.ts --fix",
|
|
25
|
+
"prettier": "prettier src --write",
|
|
26
|
+
"------------------------------------------------": "",
|
|
27
|
+
"package:latest": "ts-node deploy --tag latest",
|
|
28
|
+
"package:next": "ts-node deploy --tag next",
|
|
29
|
+
"package:patch": "ts-node deploy --tag patch",
|
|
30
|
+
"package:tgz": "ts-node deploy --tag tgz",
|
|
31
|
+
"package:deprecate": "npm deprecate typescript-json \"Renamed to typia\""
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/samchon/typia"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"fast",
|
|
39
|
+
"json",
|
|
40
|
+
"stringify",
|
|
41
|
+
"typescript",
|
|
42
|
+
"transform",
|
|
43
|
+
"ajv",
|
|
44
|
+
"io-ts",
|
|
45
|
+
"schema",
|
|
46
|
+
"jsonschema",
|
|
47
|
+
"generator",
|
|
48
|
+
"assert",
|
|
49
|
+
"clone",
|
|
50
|
+
"is",
|
|
51
|
+
"validate",
|
|
52
|
+
"equal",
|
|
53
|
+
"runtime",
|
|
54
|
+
"type",
|
|
55
|
+
"typebox",
|
|
56
|
+
"checker",
|
|
57
|
+
"validator",
|
|
58
|
+
"safe",
|
|
59
|
+
"parse",
|
|
60
|
+
"prune",
|
|
61
|
+
"random"
|
|
62
|
+
],
|
|
63
|
+
"author": "Jeongho Nam",
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/samchon/typia/issues"
|
|
67
|
+
},
|
|
68
|
+
"homepage": "https://typia.io",
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@samchon/openapi": "0.1.22",
|
|
71
|
+
"commander": "^10.0.0",
|
|
72
|
+
"comment-json": "^4.2.3",
|
|
73
|
+
"inquirer": "^8.2.5",
|
|
74
|
+
"randexp": "^0.5.3"
|
|
75
|
+
},
|
|
76
|
+
"peerDependencies": {
|
|
77
|
+
"typescript": ">=4.8.0 <5.6.0"
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
81
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
82
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
83
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
84
|
+
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
85
|
+
"@types/inquirer": "^8.2.5",
|
|
86
|
+
"@types/node": "^18.15.12",
|
|
87
|
+
"@types/ts-expose-internals": "npm:ts-expose-internals@5.4.2",
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
89
|
+
"@typescript-eslint/parser": "^7.1.1",
|
|
90
|
+
"chalk": "^4.0.0",
|
|
91
|
+
"prettier": "^3.2.5",
|
|
92
|
+
"rimraf": "^5.0.5",
|
|
93
|
+
"rollup": "^4.18.0",
|
|
94
|
+
"suppress-warnings": "^1.0.2",
|
|
95
|
+
"ts-node": "^10.9.2",
|
|
96
|
+
"typescript": "^5.4.5"
|
|
97
|
+
},
|
|
98
|
+
"stackblitzs": {
|
|
99
|
+
"startCommand": "npm install && npm run test"
|
|
100
|
+
},
|
|
101
|
+
"files": [
|
|
102
|
+
"LICENSE",
|
|
103
|
+
"README.md",
|
|
104
|
+
"package.json",
|
|
105
|
+
"lib",
|
|
106
|
+
"src"
|
|
107
|
+
]
|
|
108
|
+
}
|