-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "studo.js",
"version": "1.0.1",
"description": "Client to interact with the studo app's API",
"author": "j4k0xb",
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "GPL-3.0",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src/ --ext .js,.ts",
"format": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"prepublishOnly": "npm run build"
},
"repository": "https://github.com/studojs/studo.js",
"homepage": "https://github.com/studojs/studo.js#readme",
"bugs": "https://github.com/studojs/studo.js/issues",
"keywords": [
"studo",
"moshbit",
"university",
"client",
"websocket",
"onesignal",
"typescript"
],
"dependencies": {
"emittery": "^1.0.0",
"fflate": "^0.7.4",
"rfc4648": "^1.5.2",
"socket.io-client": "^2.4.0"
},
"devDependencies": {
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}