-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.76 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
82
83
84
85
{
"name": "callsheet",
"version": "1.5.3",
"description": "AI-generated daily printed briefs",
"type": "module",
"packageManager": "yarn@4.13.0",
"bin": "dist/cli.js",
"scripts": {
"build": "tsc && node web/build.mjs && cp -R src/prompts dist/prompts",
"build:web": "node web/build.mjs",
"build:web:watch": "node web/build.mjs --watch",
"dev:web": "tsx src/dev-server.ts",
"dashboard": "node web/build.mjs && tsx src/dev-server.ts",
"start": "tsx src/cli.ts",
"preview": "tsx src/cli.ts --preview",
"print": "tsx src/cli.ts",
"test": "node --max-old-space-size=4096 --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --max-old-space-size=4096 --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --max-old-space-size=4096 --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:connector": "tsx src/cli.ts --test",
"data": "tsx src/cli.ts --show-data",
"auth:gcal": "sh -c 'tsx src/cli.ts --auth google_calendar${1:+:$1}' --",
"auth:gmail": "sh -c 'tsx src/cli.ts --auth gmail${1:+:$1}' --",
"review": "tsx src/cli.ts --review",
"connectors": "tsx src/cli.ts --list-connectors",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"changeset": "changeset",
"release": "bash scripts/release.sh",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"license": "AGPL-3.0-only",
"engines": {
"node": ">=24"
},
"dependencies": {
"@actual-app/api": "^26.8.1",
"@anthropic-ai/sdk": "0.120.0",
"@react-pdf/renderer": "^4.3.0",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"express": "^5.2.1",
"google-auth-library": "^9.15.1",
"googleapis": "^146.0.0",
"js-yaml": "^4.1.0",
"node-cron": "^4.2.1",
"react": "^19.1.0",
"react-dom": "^19.2.4",
"suncalc": "^1.9.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.2.3",
"@types/suncalc": "^1",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-junit": "^16.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsx": "^4.22.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.60.0"
}
}