-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.68 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
{
"scripts": {
"build": "zile",
"changeset:publish": "zile publish:prepare && changeset publish && zile publish:post",
"changeset:version": "changeset version",
"check": "oxlint --fix --ignore-pattern package.json && oxfmt",
"check:types": "tsc -b",
"incur": "node --import tsx src/bin.ts",
"cli:skills": "pnpm incur skills add",
"dev": "zile dev",
"test": "vitest"
},
"devDependencies": {
"@changesets/cli": "latest",
"@hono/zod-openapi": "^1.2.2",
"@types/node": "latest",
"@vitest/coverage-v8": "^4.0.18",
"bun": "^1.3.10",
"hono": "^4.12.5",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"tsx": "^4.21.0",
"typescript": "latest",
"vitest": "latest",
"zile": "latest"
},
"pnpm": {
"onlyBuiltDependencies": [
"bun"
]
},
"packageManager": "pnpm@10.30.2",
"[!start-pkg]": "",
"name": "incur",
"type": "module",
"version": "0.3.25",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wevm/incur"
},
"files": [
"examples",
"dist",
"src",
"SKILL.md"
],
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/server": "^2.0.0-alpha.2",
"@toon-format/toon": "^2.1.0",
"tokenx": "^1.3.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"engines": {
"node": ">=22"
},
"sideEffects": false,
"bin": {
"incur": "./dist/bin.js",
"incur.src": "./src/bin.ts"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"src": "./src/index.ts",
"default": "./dist/index.js"
}
}
}