-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 957 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 957 Bytes
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
{
"name": "@sequinstream/sequin-js",
"version": "0.1.0",
"description": "A lightweight JavaScript SDK for sending, receiving, and acknowledging messages in Sequin streams",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/sequinstream/sequin-js"
},
"keywords": [
"sequin",
"stream",
"messaging"
],
"author": "Sequin",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.12",
"@types/node": "20.12.7",
"gts": "^5.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.3"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test": "jest",
"build": "tsc -p tsconfig.json"
}
}