-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.31 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
{
"name": "@commet/ai-sdk",
"version": "5.0.0",
"description": "Commet billing middleware for Vercel AI SDK",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .turbo node_modules dist"
},
"keywords": [
"billing",
"ai",
"tokens",
"usage-based-billing",
"ai-sdk",
"middleware"
],
"author": "Commet Team",
"license": "MIT",
"peerDependencies": {
"@commet/node": "workspace:^",
"ai": ">=6.0.0"
},
"devDependencies": {
"@ai-sdk/provider": "^3.0.0",
"@commet/node": "workspace:*",
"@types/node": "24.13.2",
"ai": "^6.0.0",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://commet.co",
"repository": {
"type": "git",
"url": "https://github.com/commet-labs/commet.git",
"directory": "packages/ai-sdk"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}