-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "ts-auto-guard",
"version": "5.0.1",
"description": "Generate type guard functions from TypeScript interfaces",
"homepage": "https://github.com/rhys-vdw/ts-auto-guard",
"repository": "github:rhys-vdw/ts-auto-guard",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run-script lint && npm run-script format:check",
"test": "tape -r ts-node/register tests/**/*.test.ts | tap-diff",
"build": "tsc",
"build:prod": "tsc --sourceMap false",
"lint": "eslint .",
"preformat": "eslint --fix",
"format": "prettier --write **/*.yml src/**/*.ts tests/**/*.ts",
"format:check": "prettier --list-different **/*.yml src/**/*.ts tests/**/*.ts"
},
"bin": {
"ts-auto-guard": "./lib/cli.js"
},
"author": "Rhys van der Waerden",
"license": "MIT",
"dependencies": {
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.2",
"ts-morph": "^24.0.0",
"tsconfig": "^7.0.0"
},
"devDependencies": {
"@detools/tap-diff": "^0.2.2",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/node": "^22.0.0",
"@types/tape": "^5.6.4",
"@types/uglify-js": "^3.17.5",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"tape": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"uglify-js": "^3.18.0"
}
}