-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ft-financial-canvas",
"version": "0.1.2",
"private": true,
"description": "Terminal-native financial canvases for OpenCode and Codex, evolved from the Feitu July Hackathon",
"type": "module",
"main": "./dist/index.js",
"bin": {
"ft-tui-kit": "./scripts/ft-tui-kit.ts",
"ftcodex": "./scripts/ftcodex.sh",
"ftopencode": "./scripts/ftopencode.sh"
},
"exports": {
".": {
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "bun run build:plugin && bun run build:canvases",
"build:canvases": "./scripts/build-canvas-bin.sh",
"build:plugin": "bun build ./src/index.ts --target bun --outfile dist/index.js && bun build ./src/hosts/codex/mcp-server.ts --target bun --outfile dist/codex-mcp.js && bun build ./src/hosts/codex/hook.ts --target bun --outfile dist/codex-hook.js",
"codex:install": "bun run ./scripts/install-codex-plugin.ts",
"prepack": "bun run build:plugin",
"canvas": "bun run canvases/launcher.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src canvases scripts --max-warnings 0",
"lint:fix": "eslint src canvases scripts --fix --max-warnings 0",
"format": "prettier --write \"{src,canvases,scripts}/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"{src,canvases,scripts}/**/*.{ts,tsx}\"",
"check": "bun run typecheck && bun run lint && bun run format:check"
},
"files": [
"dist",
".codex-plugin",
".mcp.json",
"hooks",
"src",
"canvases",
"skills",
"scripts/build-canvas-bin.sh",
"scripts/ft-tui-kit.ts",
"scripts/ftcodex.sh",
"scripts/ftopencode.sh",
"scripts/install-codex-plugin.ts"
],
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"@opencode-ai/plugin": "^1.0.85",
"commander": "^14.0.2",
"ink": "^6.6.0",
"react": "^19.2.3",
"zod": "^4.1.8"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.11.5",
"@types/react": "^19.2.7",
"bun-types": "latest",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5",
"typescript-eslint": "^8.0.0"
},
"keywords": [
"codex",
"opencode",
"financial-canvas",
"finance",
"candlesticks",
"chart",
"tui",
"terminal",
"tmux",
"ratatui",
"ink"
],
"license": "MIT"
}