-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.97 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
{
"name": "streamline",
"version": "0.3.0",
"description": "Node.js SDK for Streamline - The AI-Native Streaming Platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run --exclude '**/conformance*'",
"test:conformance": "vitest run conformance",
"test:watch": "vitest --exclude '**/conformance*'",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts --out docs/api",
"prepublishOnly": "npm run build"
},
"keywords": [
"streamline",
"streaming",
"kafka",
"messaging",
"event-driven",
"realtime",
"graphql",
"typescript"
],
"author": "Streamline Team <team@streamline.dev>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/streamlinelabs/streamline-node-sdk",
"repository": {
"type": "git",
"url": "https://github.com/streamlinelabs/streamline-node-sdk.git"
},
"bugs": {
"url": "https://github.com/streamlinelabs/streamline-node-sdk/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"typedoc": "^0.25.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"@opentelemetry/api": "^1.7.0"
},
"peerDependenciesMeta": {
"@opentelemetry/api": {
"optional": true
}
},
"dependencies": {}
}