mochiapi-statusline 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "mochiapi-statusline",
3
+ "version": "0.1.0",
4
+ "description": "ccstatusline fork with a MochiAPI balance widget (Claude Code status line for MochiAPI users)",
5
+ "module": "src/ccstatusline.ts",
6
+ "type": "module",
7
+ "bin": {
8
+ "mochiapi-statusline": "dist/ccstatusline.js"
9
+ },
10
+ "files": [
11
+ "dist/"
12
+ ],
13
+ "scripts": {
14
+ "start": "bun run src/ccstatusline.ts",
15
+ "build": "rm -rf dist/* ; bun build src/ccstatusline.ts --target=node --outfile=dist/ccstatusline.js --target-version=14",
16
+ "postbuild": "bun run scripts/replace-version.ts",
17
+ "example": "cat scripts/payload.example.json | bun start",
18
+ "lint": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0",
19
+ "lint:fix": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0 --fix",
20
+ "docs": "typedoc",
21
+ "docs:clean": "rm -rf typedoc"
22
+ },
23
+ "devDependencies": {
24
+ "@eslint/js": "^10.0.1",
25
+ "@stylistic/eslint-plugin": "^5.2.3",
26
+ "@types/bun": "latest",
27
+ "@types/pluralize": "^0.0.33",
28
+ "@types/react": "^19.1.10",
29
+ "chalk": "^5.5.0",
30
+ "eslint": "^10.0.0",
31
+ "eslint-import-resolver-typescript": "^4.4.4",
32
+ "eslint-plugin-import-newlines": "^2.0.0",
33
+ "eslint-plugin-import-x": "^4.16.2",
34
+ "eslint-plugin-react": "^7.37.5",
35
+ "eslint-plugin-react-hooks": "^7.0.1",
36
+ "globals": "^17.3.0",
37
+ "https-proxy-agent": "^8.0.0",
38
+ "ink": "6.2.0",
39
+ "ink-gradient": "^4.0.0",
40
+ "ink-select-input": "^6.2.0",
41
+ "pluralize": "^8.0.0",
42
+ "react": "^19.1.1",
43
+ "react-devtools-core": "^7.0.1",
44
+ "strip-ansi": "^7.1.0",
45
+ "tinyglobby": "^0.2.14",
46
+ "typedoc": "^0.28.12",
47
+ "typescript": "^6.0.2",
48
+ "typescript-eslint": "^8.39.1",
49
+ "vitest": "^4.0.18",
50
+ "zod": "^4.0.17"
51
+ },
52
+ "keywords": [
53
+ "claude",
54
+ "claude-code",
55
+ "cli",
56
+ "status-line",
57
+ "terminal"
58
+ ],
59
+ "author": "",
60
+ "license": "MIT",
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "git+https://github.com/Subaru486desuwa/mochiapi-statusline.git"
64
+ },
65
+ "engines": {
66
+ "node": ">=14.0.0"
67
+ },
68
+ "trustedDependencies": [
69
+ "unrs-resolver"
70
+ ],
71
+ "patchedDependencies": {
72
+ "ink@6.2.0": "patches/ink@6.2.0.patch"
73
+ }
74
+ }