-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.56 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
{
"name": "granola-cli",
"version": "0.2.0",
"description": "CLI for Granola meeting notes",
"type": "module",
"bin": {
"granola": "dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"ci": "biome ci ."
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@toon-format/toon": "^2.1.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.0.0",
"conf": "^13.0.0",
"cross-keychain": "^1.1.0",
"debug": "^4.4.3",
"open": "^10.0.0",
"shell-quote": "^1.8.3",
"yaml": "^2.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/debug": "^4.1.12",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.0.0",
"lefthook": "2.0.12",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"keywords": [
"granola",
"meeting",
"notes",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/magarcia/granola-cli.git"
},
"bugs": {
"url": "https://github.com/magarcia/granola-cli/issues"
},
"homepage": "https://github.com/magarcia/granola-cli#readme"
}