-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.json
130 lines (130 loc) · 4.17 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
120
121
122
123
124
125
126
127
128
129
130
{
"name": "typia",
"version": "4.0.0-dev.20230520",
"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",
"benchmark:generate": "ts-node benchmark/generate && npm run build:benchmark",
"test:generate": "npx ts-node src/executable/typia generate --input test/features --output test/generated/output --project test/tsconfig.json",
"test:template": "npx tsc && ts-node -P build/tsconfig.json build/test.ts",
"----------------------------------------------": "",
"build": "rimraf lib && tsc --removeComments --declaration false && tsc --emitDeclarationOnly",
"build:test": "npx tsc && rimraf bin && tsc -p test/tsconfig.json --allowPlugins",
"build:benchmark": "rimraf measure && tsc -p benchmark/tsconfig.json",
"build:test:prettier": "npm run build:test && prettier --write ./bin/**/*.js",
"eslint": "eslint ./**/*.ts",
"eslint:fix": "eslint ./**/*.ts --fix",
"prettier": "prettier --write ./**/*.ts",
"-----------------------------------------------": "",
"issue": "node test/issue",
"issue:generate": "ts-node src/executable/typia generate -- --input test/issues/generate/input --output test/issues/generate --project test/tsconfig.json",
"test": "node bin/test",
"test:manual": "node test/manual",
"------------------------------------------------": "",
"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\""
},
"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": {
"commander": "^10.0.0",
"comment-json": "^4.2.3",
"inquirer": "^8.2.5",
"randexp": "^0.5.3"
},
"peerDependencies": {
"typescript": ">= 4.5.2"
},
"devDependencies": {
"@fastify/type-provider-typebox": "^3.0.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/commander": "^2.12.2",
"@types/d3": "^7.4.0",
"@types/express": "^4.17.14",
"@types/inquirer": "^8.2.5",
"@types/nested-error-stacks": "^2.1.0",
"@types/node": "^18.15.12",
"@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.14.0",
"cli": "^1.0.1",
"d3": "^5.16.0",
"eslint-plugin-deprecation": "^1.4.1",
"express": "^4.18.2",
"fast-json-stringify": "^5.4.0",
"fastify": "^4.9.2",
"io-ts": "^2.2.19",
"jsdom": "^21.1.1",
"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",
"tgrid": "^0.8.7",
"ts-node": "^10.9.1",
"typescript": "https://typescript.visualstudio.com/cf7ac146-d525-443c-b23c-0d58337efebc/_apis/build/builds/154373/artifacts?artifactName=tgz&fileId=E84F858A7DB193E4718B04B36E180E9732E1BF8E0B89865EB1560119CDC550DA02&fileName=/typescript-5.2.0-insiders.20230516.tgz",
"typescript-transform-paths": "^3.4.6",
"uuid": "^8.3.2",
"zod": "^3.19.1"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"lib",
"src"
],
"private": true
}