-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.09 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
75
76
77
78
79
80
{
"name": "@stream-io/node-sdk",
"version": "0.4.5",
"description": "",
"exports": {
".": {
"import": "./dist/index.es.mjs",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"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": {
"prepare": "husky install",
"prepublish": "yarn build",
"test": "vitest",
"test:bun": "bun run vitest",
"start": "rollup -w -c",
"build": "rm -rf dist && rollup -c",
"generate:open-api": "./generate-openapi.sh",
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.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"
],
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.7.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.4",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"dotenv": "^16.3.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rollup": "^3.29.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^1.0.0-beta.5",
"vitest-mock-extended": "^1.2.1"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.11.24",
"jsonwebtoken": "^9.0.2",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}