-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 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
{
"name": "opencal",
"version": "0.1.0",
"description": "Powerful TUI to manage your calendar",
"module": "src/main.ts",
"type": "module",
"bin": {
"opencal": "./bin/opencal"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"esbuild": "^0.25.12"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"scripts": {
"dev": "bun run src/main.ts",
"dev:tui": "bun run src/tui/index.tsx",
"dev:cli": "bun run src/cli/index.ts",
"build": "bun run script/build.ts",
"build:single": "bun run script/build.ts --single",
"publish:npm": "bun run script/publish.ts",
"publish:registries": "bun run script/publish-registries.ts"
},
"dependencies": {
"@openauthjs/openauth": "^0.4.3",
"@opentui/core": "^0.1.63",
"@opentui/solid": "^0.1.63",
"babel-preset-solid": "^1.9.10",
"chrono-node": "^2.9.0",
"date-fns": "^4.1.0",
"fuzzysort": "^3.1.0",
"googleapis": "^164.1.0",
"opentui-spinner": "^0.0.6",
"remeda": "^2.32.0",
"solid-js": "^1.9.10",
"winston": "^3.19.0",
"xdg-basedir": "^5.1.0",
"yargs": "^18.0.0",
"zod": "^4.2.1"
}
}