-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.65 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
{
"scripts": {
"build": "zile",
"changeset:publish": "zile publish:prepare && changeset publish && zile publish:post",
"changeset:version": "changeset version",
"check": "vp check --fix",
"check:docs": "node --import tsx scripts/docs.ts",
"check:types": "tsc",
"dev": "zile dev",
"frog": "node --import tsx src/bin.ts",
"schema": "node --import tsx scripts/schema.ts",
"test": "vp test"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@testcontainers/postgresql": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vite-plus": "catalog:",
"zile": "catalog:"
},
"packageManager": "pnpm@11.15.0",
"[!start-pkg]": "",
"name": "frog",
"type": "module",
"version": "1.1.0",
"license": "MIT",
"description": "Automated friction logging for agents.",
"repository": {
"type": "git",
"url": "https://github.com/wevm/frog"
},
"keywords": [
"agents",
"dx",
"friction-log",
"github-issues",
"mcp"
],
"bin": {
"frog": "./dist/bin.js",
"frog.src": "./src/bin.ts"
},
"files": [
"dist",
"src",
"schema.json"
],
"exports": {
".": {
"src": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@clack/prompts": "catalog:",
"@octokit/rest": "catalog:",
"incur": "catalog:",
"postgres": "catalog:",
"yaml": "catalog:"
},
"engines": {
"node": ">=22"
}
}