-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 845 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 845 Bytes
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
{
"name": "realmlib",
"version": "1.0.3",
"description": "A networking library for Realm of the Mad God in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc -p ."
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abrn/realmlib.git"
},
"author": "abrn",
"bugs": {
"url": "https://github.com/abrn/realmlib/issues"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.0",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"ts-node": "^10.2.1",
"tsai": "^2.1.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.5",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/reflect-metadata": "^0.1.0",
"axios": ">=0.21.2",
"chalk": "^4.1.2"
}
}