-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.21 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
79
80
81
82
83
{
"name": "@stream-io/node-sdk",
"version": "0.8.1",
"description": "",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.mjs",
"require": "./dist/index.cjs.js"
}
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.mjs",
"types": "dist/index.d.ts",
"author": "https://getstream.io",
"license": "See license in LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-node.git"
},
"scripts": {
"postinstall": "node -e \"try{require.resolve('husky')}catch{process.exit(0)};require('child_process').execSync('husky',{stdio:'inherit'})\"",
"prepack": "yarn build",
"test": "vitest",
"test:bun": "bun run vitest",
"start": "vite build --watch",
"build": "rm -rf dist && vite build && tsc --emitDeclarationOnly -p tsconfig.json",
"generate:open-api": "./generate-openapi.sh",
"lint": "eslint src __tests__ index.ts",
"lint:fix": "eslint --fix src __tests__ index.ts",
"prettier:fix": "prettier . --write",
"lint:gen": "eslint --fix \"src/gen/**/*.ts\" && prettier \"src/gen/**/*.ts\" --write"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
},
"files": [
"dist",
"src",
"index.ts",
"package.json",
"README.md",
"LICENSE",
".readme-assets"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stream-io/openai-realtime-api": "~0.3.3",
"@types/node": "^22.20.1",
"dotenv": "^17.4.2",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "~4.1.10"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.10",
"jsonwebtoken": "^9.0.3"
},
"peerDependencies": {
"@stream-io/openai-realtime-api": "~0.1.3 || ~0.2.0 || ~0.3.0 || ~0.4.0"
},
"peerDependenciesMeta": {
"@stream-io/openai-realtime-api": {
"optional": true
}
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "yarn@4.18.0"
}