This repository was archived by the owner on Mar 29, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "aboutproject",
"version": "1.1.3",
"main": "src/index.tsx",
"module": "src/index.tsx",
"bin": {
"apr": "dist/index.js",
"aboutproject": "dist/index.js"
},
"type": "module",
"author": {
"name": "Okinea Dev",
"url": "https://okinea.dev"
},
"bugs": {
"url": "https://github.com/cli-stuff/apr/issues"
},
"license": "MIT",
"description": "📊 Get information about a Node.js project in the terminal in the beautiful TUI",
"keywords": ["cli", "nodejs", "terminal", "tui", "project-info"],
"repository": {
"type": "git",
"url": "git+https://github.com/cli-stuff/apr"
},
"homepage": "https://github.com/cli-stuff/apr",
"funding": "https://github.com/cli-stuff/apr?sponsor=1",
"scripts": {
"lint": "biome check --fix",
"format": "biome format --write",
"test": "FORCE_COLOR=true bun test",
"build": "bun build ./src/index.tsx --minify --outdir ./dist --target node --footer '// Built with Bun! (https://bun.sh)' --packages=external",
"prepare": "husky",
"preversion": "bun run format && git add .",
"prepublishOnly": "bun run build"
},
"lint-staged": {
"*": "bun run format --no-errors-on-unmatched"
},
"dependencies": {
"ink": "^5.1.0",
"ink-divider": "^4.1.0"
},
"peerDependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@schemastore/package": "^0.0.10",
"@types/react": "^18.3.1",
"bun-types": "^1.1.43",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^15.3.0"
},
"patchedDependencies": {
"ink@5.1.0": "patches/ink@5.1.0.patch"
},
"trustedDependencies": ["@biomejs/biome"]
}