-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.65 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.65 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
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
{
"name": "foresthouse",
"version": "1.2.0-dev.1",
"description": "A Node.js CLI that reads JavaScript and TypeScript entry files and prints an import tree.",
"type": "module",
"packageManager": "pnpm@10.32.1",
"bin": {
"foresthouse": "dist/cli.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/async3619/foresthouse.git"
},
"homepage": "https://github.com/async3619/foresthouse#readme",
"bugs": {
"url": "https://github.com/async3619/foresthouse/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"engines": {
"node": ">=24.14.0"
},
"scripts": {
"build": "tsdown",
"bench:repos": "tsx bench/run.ts",
"dev": "tsx src/cli.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run --reporter=verbose --config vitest.config.ts",
"test:unit": "vitest run --reporter=verbose --config vitest.unit.config.ts",
"test:e2e": "vitest run --reporter=verbose --config vitest.e2e.config.ts",
"test:coverage": "vitest run --reporter=verbose --coverage --config vitest.unit.config.ts",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"prepare": "husky",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run"
},
"keywords": [
"cli",
"typescript",
"dependency-graph",
"import-tree",
"nodejs"
],
"author": "Sophia (Turner) <me@sophia-dev.io>",
"license": "MIT",
"dependencies": {
"cac": "^7.0.0",
"oxc-parser": "0.119.0",
"oxc-resolver": "^11.19.1",
"typescript": "5.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@codspeed/vitest-plugin": "^5.2.0",
"@commitlint/cli": "20.4.4",
"@commitlint/config-conventional": "20.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "24.6.2",
"@vitest/coverage-v8": "^4.1.0",
"conventional-changelog-conventionalcommits": "9.3.0",
"husky": "9.1.7",
"semantic-release": "25.0.3",
"tsdown": "0.21.2",
"tsx": "4.21.0",
"vitest": "4.1.0"
}
}