This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "tsd-lite",
"version": "0.9.0",
"description": "Test your TypeScript types easily",
"keywords": [
"typescript",
"tsd",
"easy",
"check",
"checker",
"test",
"typings",
"types"
],
"homepage": "https://github.com/mrazauskas/tsd-lite/#readme",
"bugs": {
"url": "https://github.com/mrazauskas/tsd-lite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrazauskas/tsd-lite.git"
},
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"lint": "yarn lint:cspell && yarn lint:eslint && yarn lint:prettier",
"lint:cspell": "cspell --relative --show-context --show-suggestions",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier . --write",
"prepublishOnly": "yarn install && yarn build",
"test": "jest"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@jest/globals": "29.7.0",
"@tsconfig/node16": "16.1.1",
"@tsd/typescript": "5.2.2",
"@types/node": "20.9.0",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"babel-jest": "29.7.0",
"cspell": "8.0.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.7.0",
"prettier": "3.1.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"@tsd/typescript": "4.x || 5.x"
},
"packageManager": "yarn@3.6.4",
"engines": {
"node": ">=16"
}
}