-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.78 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
{
"name": "tax-ui",
"version": "0.3.1",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts --port 3005",
"start": "NODE_ENV=production bun src/index.ts",
"build": "bun run build.ts",
"build:server": "bun scripts/build-server.ts",
"download-bun": "bun scripts/download-bun.ts",
"electron:dev": "cd electron && npm run dev",
"electron:build": "bun run build:server && cd electron && npm run build",
"electron:pack": "bun run build && bun run build:server && cd electron && npm run pack",
"electron:dist": "bun run build && bun run build:server && cd electron && npm run dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"*.{ts,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"*.{ts,json}\""
},
"dependencies": {
"@anthropic-ai/claude-code": "^2.1.25",
"@anthropic-ai/sdk": "^0.72.1",
"@base-ui/react": "^1.1.0",
"@tanstack/react-table": "^8.21.3",
"bun-plugin-tailwind": "^0.1.2",
"clsx": "^2.1.1",
"motion": "^12.29.2",
"pdf-lib": "^1.17.1",
"react": "^19",
"react-dom": "^19",
"react-hotkeys-hook": "^5.2.3",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.11",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript-eslint": "^8.54.0"
}
}