-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
{
"name": "@mattfillipe/tobby",
"version": "0.2.13",
"description": "The Terminal Obby — a modern IRC client for the terminal",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ObsidianIRC/tobby.git"
},
"bin": {
"tobby": "bin/tobby.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"dev": "bun run src/index.tsx",
"start": "bun run dist/index.js",
"build": "bun run scripts/build.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src tests && prettier --check 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"lint:fix": "eslint src tests --fix && prettier --write 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"typecheck": "bash -c 'tsc --noEmit 2>&1 | grep -E \"^(src/|tests/)\" > /tmp/tsc-out.txt; if [ -s /tmp/tsc-out.txt ]; then cat /tmp/tsc-out.txt; exit 1; fi'",
"prepare": "husky",
"db:clear": "bun run scripts/clear-database.ts",
"aur-release": "bash scripts/aur-release.sh",
"knip": "knip"
},
"devDependencies": {
"@tauri-apps/api": "^2.9.1",
"highlight.js": "^11.11.1",
"marked": "^16.4.0",
"@eslint/js": "^9.39.2",
"@types/bun": "latest",
"@types/react": "^19.2.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"knip": "^5.85.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.75",
"@opentui/react": "^0.1.75",
"clipboardy": "^5.3.0",
"emojilib": "^4.0.2",
"fuse.js": "^7.1.0",
"react": "^19.2.4",
"uuid": "^13.0.0",
"zustand": "^5.0.11"
}
}