-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "osrs-wrapper",
"version": "2.2.9",
"description": "A simple wrapper around the Old School Runescape API",
"main": "index.js",
"keywords": [
"Old School Runescape",
"OSRS",
"API"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atjeff/Osrs-Wrapper"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "prettier --list-different 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "jest --runInBand"
},
"dependencies": {
"gaxios": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"volta": {
"node": "20.17.0"
}
}