forked from samchon/typia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.38 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
111
112
113
114
115
116
117
118
119
{
"name": "typia",
"version": "3.4.28",
"description": "Superfast runtime validators with only one line",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"typia": "./lib/executable/typia.js"
},
"scripts": {
"benchmark": "npm run build:benchmark && node measure/benchmark",
"build": "rimraf lib && ttsc --removeComments --declaration false && ttsc --emitDeclarationOnly",
"build:test": "rimraf bin && ttsc -p tsconfig.test.json",
"build:benchmark": "rimraf measure && ttsc -p tsconfig.benchmark.json",
"build:test:prettier": "npm run build:test && prettier --write ./bin/**/*.js",
"dev": "rimraf lib && ttsc --watch",
"dev:test": "rimraf bin && ttsc -p tsconfig.test.json --watch",
"eslint": "eslint ./**/*.ts",
"eslint:fix": "eslint ./**/*.ts --fix",
"issue": "node test/issue",
"package:latest": "ts-node build/publish.ts latest",
"package:next": "ts-node build/publish.ts next",
"package:deprecate": "npm deprecate typescript-json \"Renamed to typia\"",
"prettier": "prettier --write ./**/*.ts",
"test": "node bin/test",
"test:generate": "ts-node -P tsconfig.test.json build/test.ts",
"test:manual": "node test/manual",
"test:application:replace": "node test/features/application/replace && npm run prettier"
},
"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"
],
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/typia/issues"
},
"homepage": "https://github.com/samchon/typia#readme",
"peerDependencies": {
"ttypescript": ">= 1.5.15",
"typescript": ">= 4.5.2"
},
"devDependencies": {
"@fastify/type-provider-typebox": "^2.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@typegoose/typegoose": "^10.1.1",
"@types/autocannon": "^7.9.0",
"@types/benchmark": "^2.1.2",
"@types/cli": "^0.11.20",
"@types/d3": "^7.4.0",
"@types/express": "^4.17.14",
"@types/jsdom": "^20.0.0",
"@types/nested-error-stacks": "^2.1.0",
"@types/node": "^17.0.24",
"@types/physical-cpu-count": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autocannon": "^7.10.0",
"benchmark": "^2.1.4",
"chalk": "^4.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cli": "^1.0.1",
"comment-json": "^4.2.3",
"d3": "^5.16.0",
"eslint-plugin-deprecation": "^1.3.2",
"express": "^4.18.2",
"fast-json-stringify": "^5.4.0",
"fastify": "^4.9.2",
"io-ts": "^2.2.19",
"jsdom": "^20.0.2",
"physical-cpu-count": "^2.0.0",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sloc": "^0.2.1",
"source-map-support": "^0.5.21",
"suppress-warnings": "^1.0.2",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.4",
"uuid": "^8.3.2",
"zod": "^3.19.1"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"lib",
"src"
],
"private": true
}