-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.53 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@ysk8hori/typescript-graph",
"repository": {
"type": "git",
"url": "https://github.com/ysk8hori/typescript-graph.git"
},
"bugs": {
"url": "https://github.com/ysk8hori/typescript-graph/issues"
},
"version": "0.0.0-development",
"description": "A CLI to visualize the dependencies between files in the TypeScript codebase.",
"homepage": "https://github.com/ysk8hori/typescript-graph",
"exports": {
".": "./dist/src/index.js",
"./*": "./dist/src/*"
},
"bin": {
"tsg": "./bin/tsg.js"
},
"files": [
"bin",
"dist"
],
"keywords": [
"TypeScript",
"dependencies",
"dependencies graph"
],
"scripts": {
"run": "tsx ./src/cli/entry.ts",
"run:help": "tsx ./src/cli/entry.ts -h",
"run:sample": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --LR",
"run:sample:include": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --include includeFiles config --LR",
"run:sample:exclude": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --include includeFiles config --exclude excludeFiles utils --LR",
"run:sample:abstraction": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --include includeFiles config --exclude excludeFiles utils --abstraction abstractions --LR",
"run:sample:highlight": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --include includeFiles config --exclude excludeFiles utils --abstraction abstractions --LR --highlight config.ts b.ts",
"run:sample:link": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --mermaid-link",
"run:sample:README": "tsx ./src/cli/entry.ts -d /Users/horiyousuke/Documents/dev/numberplace --include src/components/atoms/ConfigMenu --exclude test stories node_modules",
"run:sample:dir": "tsx ./src/cli/entry.ts --tsconfig './dummy_project/tsconfig.json' --LR",
"run:instability": "tsx ./src/cli/entry.ts --measure-instability",
"build": "tsc -p tsconfig.build.json",
"build:re": "rm -r ./dist && npm run build",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"lint:fix": "eslint --fix src",
"prettier": "prettier --write ./src",
"type-check": "tsc --noEmit",
"test": "vitest run src",
"test:watch": "vitest src",
"test:integration": "vitest run ./integration",
"test:integration:update": "vitest run -u ./integration",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"author": "ysk8hori",
"license": "ISC",
"dependencies": {
"chalk": "4.1.2",
"chokidar": "4.0.3",
"commander": "13.0.0",
"console-table-printer": "2.12.1",
"remeda": "2.19.1",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "22.10.7",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0",
"vitest": "3.0.4",
"zx": "8.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"eslint --fix",
"npm run prettier --",
"git add"
]
},
"release": {
"branches": [
"main"
]
}
}