-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "ink-divider",
"version": "4.0.3",
"description": "Divider component for Ink",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/JureSotosek/ink-divider"
},
"author": {
"name": "Jure Sotosek",
"email": "[email protected]",
"url": "https://github.com/JureSotosek"
},
"module": "src/index.tsx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "biome check --fix",
"format": "biome format --write .",
"test": "FORCE_COLOR=true bun test",
"preversion": "bun run test && bun run format && git add .",
"build": "bun build ./src/index.tsx --minify --outdir ./dist --target node --external=yoga-wasm-web",
"postbuild": "bunx --bun tsc -p ./tsconfig.declarations.json",
"prepublishOnly": "bun run build",
"prepare": "husky",
"examples:basic": "bun ./examples/basic.tsx",
"examples:advanced": "bun ./examples/advanced.tsx",
"examples:auto-grow": "bun ./examples/auto-grow.tsx",
"examples": "bun run examples:basic && echo && bun run examples:advanced && echo && bun run examples:auto-grow"
},
"dependencies": {
"ink": "^5.1.0",
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.14",
"@types/react": "^18.3.14",
"changelogen": "^0.5.7",
"husky": "^9.1.6",
"ink-testing-library": "^4.0.0",
"lint-staged": "^15.2.10",
"typescript": "^5.7.2"
},
"lint-staged": {
"*": "bun run format"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"keywords": [
"ink",
"ink-component",
"ink-divider",
"ink-cli"
],
"trustedDependencies": [
"@biomejs/biome"
]
}