-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.79 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@kkarimi/gran",
"version": "0.67.0",
"description": "Unofficial open-source toolkit for syncing, browsing, exporting, and automating Granola locally under the Gran brand",
"keywords": [
"automation",
"byoa",
"cli",
"granola",
"notes",
"pi-package",
"search",
"sync",
"transcripts",
"tui",
"web"
],
"homepage": "https://kkarimi.github.io/gran/",
"bugs": {
"url": "https://github.com/kkarimi/gran/issues"
},
"license": "MIT",
"author": "Nima Karimi",
"repository": {
"type": "git",
"url": "git+https://github.com/kkarimi/gran.git"
},
"bin": {
"gran": "dist/cli.js"
},
"workspaces": [
"packages/*"
],
"files": [
"README.md",
"dist/cli.js",
"skills/openclaw-gran"
],
"type": "module",
"main": "dist/cli.js",
"module": "dist/cli.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run web:check && vp pack",
"browser:e2e": "playwright test",
"browser:install": "playwright install chromium",
"check": "vp check",
"coverage": "vp test --coverage",
"core:build": "npm run build --workspace @kkarimi/gran-core",
"core:check": "npm run check --workspace @kkarimi/gran-core",
"core:pack:dry-run": "npm pack --dry-run --workspace @kkarimi/gran-core",
"core:test": "npm run test --workspace @kkarimi/gran-core",
"dev": "vp pack --watch",
"docs:build": "npm --prefix docs run build",
"docs:check": "npm --prefix docs run types:check && npm --prefix docs run build",
"docs:dev": "npm --prefix docs run dev",
"docs:start": "npm --prefix docs run start",
"fmt": "vp fmt",
"hooks:smoke": "node scripts/hooks-smoke.mjs",
"lint": "vp lint",
"pack:dry-run": "npm pack --dry-run",
"prepublishOnly": "node scripts/prepublish.mjs",
"release": "node scripts/release.mjs",
"release:major": "node scripts/release.mjs major",
"release:minor": "node scripts/release.mjs minor",
"release:notes": "node scripts/release-notes.mjs",
"release:patch": "node scripts/release.mjs patch",
"sdk:build": "npm run build --workspace @kkarimi/gran-sdk",
"sdk:check": "npm run check --workspace @kkarimi/gran-sdk",
"sdk:pack:dry-run": "npm pack --dry-run --workspace @kkarimi/gran-sdk",
"sdk:test": "npm run test --workspace @kkarimi/gran-sdk",
"standalone:build": "node scripts/build-standalone.mjs",
"standalone:smoke": "node scripts/build-standalone.mjs --smoke-test",
"staged:check": "node scripts/staged-check.mjs",
"start": "node dist/cli.js",
"start:web": "npm run web:restart",
"notes": "node dist/cli.js notes",
"tui": "node dist/cli.js tui",
"transcripts": "node dist/cli.js transcripts",
"test": "vp test",
"typecheck": "vp exec tsc --noEmit",
"prepare": "vp config && npm run web:build && node scripts/install-hooks.mjs",
"web:build": "node scripts/build-web-client.mjs",
"web:check": "node scripts/build-web-client.mjs --check",
"web:restart": "npm run web:build && vp pack && node dist/cli.js web --restart"
},
"dependencies": {
"@kkarimi/yazd-core": "github:kkarimi/yazd#0b5bdf6",
"@mariozechner/pi-tui": "^0.65.0",
"marked": "^17.0.6",
"node-html-markdown": "^2.0.0",
"solid-js": "^1.9.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "4.1.2",
"esbuild": "^0.27.7",
"postject": "^1.0.0-alpha.6",
"typescript": "^5.9.3",
"vite-plugin-solid": "^2.11.11",
"vite-plus": "0.1.15"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@11.7.0",
"pi": {
"skills": [
"./skills/openclaw-gran"
]
}
}