-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
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
{
"name": "salesforce-pubsub-api-client",
"version": "5.0.0",
"type": "module",
"description": "A node client for the Salesforce Pub/Sub API",
"author": "pozil",
"license": "CC0-1.0",
"homepage": "https://github.com/pozil/pub-sub-api-node-client",
"main": "dist/client.js",
"exports": {
".": {
"require": "./dist/client.cjs",
"import": "./dist/client.js"
}
},
"scripts": {
"build": "tsup && tsc",
"test": "jasmine",
"prettier": "prettier --write '**/*.{css,html,js,json,md,yaml,yml}'",
"lint": "eslint src",
"prepare": "husky || true",
"precommit": "lint-staged",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "^0.7.13",
"avro-js": "^1.12.0",
"certifi": "^14.5.15",
"jsforce": "^3.5.2",
"undici": "^6.20.0"
},
"devDependencies": {
"@chialab/esbuild-plugin-meta-url": "^0.18.2",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-plugin-jasmine": "^4.2.2",
"husky": "^9.1.6",
"jasmine": "^5.4.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"lint-staged": {
"**/src/*.{css,html,js,json,md,yaml,yml}": [
"prettier --write"
],
"**/src/**/*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/pub-sub-api-node-client"
},
"keywords": [
"salesforce",
"pubsub",
"api",
"grpc"
],
"files": [
"dist/*",
"pubsub_api.proto"
],
"volta": {
"node": "20.17.0"
}
}