-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
62
63
64
{
"name": "depon",
"version": "0.3.3",
"description": "This library explores and visualizes project dependencies, offering both CLI-based text output and an interactive visualizer for intuitive understanding of file relationships.",
"repository": {
"type": "git",
"url": "https://github.com/cut0/depon.git"
},
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.js"
},
"./*": "./*"
},
"bin": {
"depon": "./dist/cli/index.js"
},
"scripts": {
"lint:check": "biome ci",
"lint:fix": "biome check --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"build": "tsc -p ./tsconfig.build.json && tsx ./build.ts",
"release": "pnpm build && changeset publish",
"cli:dev": "tsx ./src/cli/index.ts"
},
"keywords": [
"Depon",
"Dependency",
"Visualizer",
"Graph",
"CLI",
"Library",
"Tool",
"File"
],
"author": "Cut0",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@commitlint/cli": "19.6.1",
"@types/node": "22.9.0",
"esbuild": "0.24.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vitest": "3.0.4"
},
"packageManager": "pnpm@9.15.4",
"dependencies": {
"commander": "13.0.0",
"minimatch": "10.2.3",
"ora": "^8.1.0",
"ts-morph": "25.0.0"
}
}