-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 KB
/
package.json
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
{
"name": "@upstash/kafka",
"version": "1.3.0",
"engines": {
"node": ">=18"
},
"description": "An HTTP/REST based Kafka client built on top of Upstash REST API.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"./dist"
],
"scripts": {
"test": "bun test pkg --coverage",
"fmt": "bunx @biomejs/biome check --apply ./pkg",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/upstash-kafka.git"
},
"keywords": [
"kafka",
"database",
"serverless",
"edge",
"upstash"
],
"author": "Andreas Thomas <andreas.thomas@chronark.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/upstash-kafka/issues"
},
"homepage": "https://github.com/upstash/upstash-kafka#readme",
"directories": {
"examples": "examples"
},
"devDependencies": {
"@biomejs/biome": "^1.3.0",
"bun-types": "^1.0.7",
"tsup": "^7.2.0",
"typescript": "latest"
}
}