-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 987 Bytes
/
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": "@smartlook/circular-deps-detector",
"version": "1.0.4",
"description": "Package to detect circular dependencies and unused files in TypeScript projects.",
"author": "Smartlook",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/smartlook/circular-deps-detector.git"
},
"homepage": "https://github.com/smartlook/circular-deps-detector",
"bin": {
"detect-circular-deps": "./bin/detect-circular-deps"
},
"scripts": {
"lint": "eslint .",
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@opentf/cli-pbar": "^0.1.6",
"fs-extra": "^11.1.1",
"ts-morph": "^19.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}