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