forked from smartpricing/alyxstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.91 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
71
72
73
74
{
"name": "@dev.smartpricing/alyxstream",
"version": "0.6.1",
"description": "",
"type": "module",
"types": "./index.d.ts",
"scripts": {
"test": "ALYXSTREAM_LOG_LEVEL='-' node --experimental-vm-modules ./node_modules/.bin/jest --rootDir=tests",
"test-types": "tsc --noEmit --skipLibCheck ./tests/types.ts && tsx tests/types.ts",
"prebuild": "rm -rf lib",
"build": "npx tsc -p tsconfig-mjs.json && npx tsc -p tsconfig-cjs.json",
"postbuild": "echo '{\"type\": \"commonjs\" }' > lib/cjs/package.json && echo '{\"type\": \"module\" }' > lib/mjs/package.json && cp index.d.ts lib/mjs/index.d.ts && cp index.d.ts lib/cjs/index.d.ts",
"prepare": "npm run build"
},
"exports": {
"import": {
"default": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts"
},
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/csj/index.d.ts"
}
},
"author": "Smartpricing",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/smartpricing/alyxstream"
},
"standard": {
"ignore": [
"tests/*",
"dev/*",
"docs/*",
"usage-examples/*"
]
},
"dependencies": {
"@opensearch-project/opensearch": "^2.7.0",
"cassandra-driver": "^4.6.4",
"etcd3": "^1.1.2",
"express": "^4.18.2",
"ioredis": "^5.2.4",
"kafkajs": "^2.2.2",
"level": "^8.0.0",
"nats": "^2.19.0",
"pg": "^8.11.5",
"pulsar-client": "^1.10.0",
"smartlocks": "^0.0.4",
"uuid": "^9.0.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/pg": "^8.11.5",
"@types/ws": "^8.5.10",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"jest": "^29.3.1",
"standard": "^17.1.0",
"typescript": "^5.5.3"
},
"keywords": [
"stream",
"streamprocessing",
"kafka",
"dataflow",
"kafka stream",
"batch",
"stream processing",
"redis",
"queue"
]
}