-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 KB
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
{
"name": "@ts-stack/cycle-detector",
"type": "module",
"version": "1.1.4",
"bin": {
"cycle-detector": "./dist/index.js"
},
"description": "A fast, zero-dependency CLI tool to detect circular dependencies in TypeScript ESM projects, ignoring type-only imports.",
"repository": "https://github.com/ts-stack/cycle-detector",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"#lib/*": "./dist/*"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"test": "npm run build-test && npm run esm-jest --",
"esm-jest": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js",
"build": "tsc -b tsconfig.build.json",
"build-test": "tsc -b tsconfig.unit.json",
"clean": "rimraf dist*"
},
"keywords": [
"ts-stack",
"dependencies",
"circular-dependencies",
"circular dependencies"
],
"author": "Kostia Tretiak",
"license": "MIT",
"peerDependencies": {
"typescript": ">=5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"eslint": "^10.5.0",
"jest": "^30.4.2",
"nodemon": "^3.1.14",
"prettier": "^3.8.4",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"type-fest": "^5.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.0"
},
"engines": {
"node": ">= 22.0.0"
},
"publishConfig": {
"access": "public"
}
}