-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@spacebarchat/spacebar-ts",
"version": "0.0.4",
"description": "Typescript library for the Spacebar API",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepublish": "npm run build",
"lint": "eslint .",
"lint:fix": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spacebarchat/spacebar-ts.git"
},
"author": "Spacebar",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/spacebarchat/spacebar-ts/issues"
},
"homepage": "https://spacebar.chat",
"devDependencies": {
"@types/lodash.defaultsdeep": "^4.6.7",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@sapphire/snowflake": "^3.4.2",
"@spacebarchat/spacebar-types": "^0.1.3",
"eventemitter3": "^5.0.0",
"exponential-backoff": "^3.1.1",
"isomorphic-ws": "^5.0.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.isequal": "^4.5.0",
"mobx": "^6.9.0",
"ws": "^8.13.0"
}
}