-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "@fraym/streams",
"version": "0.10.6",
"license": "MIT",
"homepage": "https://github.com/fraym/streams-nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/fraym/streams-nodejs.git"
},
"description": "nodejs client implementation for our event streaming service",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"lint": "prettier --check \"**/*.{ts,tsx,json}\"",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@fraym/proto": "^0.28.2",
"@grpc/grpc-js": "^1.12.6",
"uuid": "^11.0.5"
},
"devDependencies": {
"@becklyn/prettier": "^2.1.1",
"@types/uuid": "^10.0.0",
"prettier": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"prettier": "@becklyn/prettier"
}