-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.93 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
{
"name": "@corbits/granola",
"version": "0.1.0",
"type": "module",
"license": "LGPL-2.1-only",
"description": "Granola meeting-notes tools for Corbits agents, with an optional webhook ingress extension.",
"keywords": [
"corbits",
"interchange",
"intx",
"granola",
"tools",
"webhook",
"ingress"
],
"author": "Corbits",
"homepage": "https://github.com/corbitsdev/corbits-granola#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/corbitsdev/corbits-granola.git"
},
"bugs": {
"url": "https://github.com/corbitsdev/corbits-granola/issues"
},
"engines": {
"node": ">=22"
},
"main": "./dist/tools/index.js",
"types": "./dist/tools/index.d.ts",
"exports": {
".": {
"bun": "./src/tools/index.ts",
"types": "./dist/tools/index.d.ts",
"default": "./dist/tools/index.js"
},
"./ingress": {
"bun": "./src/ingress/index.ts",
"types": "./dist/ingress/index.d.ts",
"default": "./dist/ingress/index.js"
},
"./ingest": {
"bun": "./src/ingest/index.ts",
"types": "./dist/ingest/index.d.ts",
"default": "./dist/ingest/index.js"
}
},
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepack": "bun run build",
"check-deps": "bun run scripts/check-deps.ts",
"test:tools": "bun test src/tools",
"test:ingress": "bun test src/ingress",
"test:ingest": "bun test src/ingest",
"test": "bun test src",
"test:coverage": "bun test --coverage src"
},
"dependencies": {
"@intx/log": "0.2.2",
"arktype": "^2.1.29"
},
"peerDependencies": {
"hono": "^4.0.0"
},
"devDependencies": {
"@types/bun": "1.1.14",
"@types/node": "22.10.5",
"hono": "^4.11.9",
"typescript": "5.7.2"
}
}