-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "@stanimirovv/tsoogle",
"version": "1.6.1",
"description": "Find functions or methods by approximate signature - return type, argument types or both. Supports optional arguments, rest arguments and partial type checking.",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint '{src,tests}/**/*' --ext ts --ext tsx --ext js --fix",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/stanimirovv/tsoogle"
},
"author": "Zlatin Stanimirov",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16",
"kleur": "^4.1.5",
"sqlite3": "^5.1.6",
"ts-morph": "^20.0.0"
}
}