This repository was archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 KB
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
75
76
77
78
{
"name": "@streamdal/node-sdk",
"workspaces": [
"examples"
],
"version": "0.1.31",
"description": "Streamdal's Node SDK",
"keywords": [
"streamdal",
"typescript",
"node",
"data quality"
],
"type": "module",
"exports": {
"require": "./cjs/streamdal.js",
"import": "./esm/streamdal.js"
},
"main": "esm/streamdal.js",
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:commonjs && ./generatePackages.sh",
"build:commonjs": "npx tsc --module commonjs --outDir build/cjs/",
"build:esm": "npx tsc --module es2022 --outDir build/esm/",
"clean": "rimraf build",
"sandbox": "tsc-watch --onSuccess \"node --experimental-wasi-unstable-preview1 ./build/sandbox/index.js\"",
"lint": "eslint src --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"type:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streamdal/node-sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/streamdal/node-sdk/issues"
},
"homepage": "https://github.com/streamdal/node-sdk#readme",
"dependencies": {
"@grpc/grpc-js": "1.8.17",
"@grpc/proto-loader": "0.7.7",
"@protobuf-ts/grpc-transport": "2.9.0",
"@protobuf-ts/runtime-rpc": "2.9.0",
"@streamdal/protos": "^0.1.17",
"@types/rwlock": "^5.0.3",
"@types/sinon": "^10.0.16",
"dotenv": "^16.3.1",
"rwlock": "^5.0.0",
"sinon": "^15.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "20.7.1",
"@types/prompts": "^2.4.4",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.5",
"source-map-support": "^0.5.21",
"tsc-watch": "6.0.4",
"tsx": "3.12.7",
"typescript": "5.1.3",
"vitest": "^0.32.2"
}
}