-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "check-type",
"version": "1.0.0",
"description": "Dynamically check JS objects against TypeScript types",
"author": "Stefan Heule <[email protected]>",
"license": "MIT",
"bin": {
"generate-schema": "./build/src/cli.js"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"copy": "ts-node --transpile-only copy.ts",
"copy2": "ts-node --transpile-only copy.ts export",
"test": "jest",
"release": "tsx release.ts",
"codegen": "yarn tsx src/tools/types/generate-schema-main.ts --config '[{\"root\":\"test\"}]'",
"build": "tsc -p tsconfig.release.json"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^18.11.9",
"jest": "^29.7.0",
"ts-command-line-args": "^2.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"date-fns": "^2.29.3",
"email-validator": "^2.0.4",
"uuid": "^9.0.0"
}
}