-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "okineadev",
"version": "1.0.1",
"main": "src/index.tsx",
"module": "src/index.tsx",
"bin": {
"okineadev": "dist/index.js"
},
"type": "module",
"author": {
"name": "Okinea Dev",
"url": "https://okinea.dev"
},
"bugs": {
"url": "https://github.com/okineadev/okineadev-npm/issues"
},
"license": "MIT",
"description": "💻 Just my contacts in the CLI",
"keywords": ["cli", "portfolio", "typescript", "links", "bun"],
"repository": {
"type": "git",
"url": "git+https://github.com/okineadev/okineadev-npm.git"
},
"funding": "https://github.com/okineadev/okineadev-npm?sponsor=1",
"scripts": {
"lint": "biome check --fix",
"format": "biome format --write",
"prepare": "husky",
"preversion": "bun run format && git add .",
"build": "bun build ./src/index.tsx --minify --outdir ./dist --target node --footer '// Built with Bun! (https://bun.sh)' --external=yoga-wasm-web",
"prepublishOnly": "bun run build"
},
"lint-staged": {
"*": "bun run format --no-errors-on-unmatched"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"ink": "^5.1.0",
"ink-divider": "^4.0.1",
"ink-link": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/ink-divider": "^2.0.4",
"@types/react": "^18.3.14",
"changelogen": "^0.5.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.11"
},
"patchedDependencies": {
"ink@5.1.0": "patches/ink@5.1.0.patch"
}
}