-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "steam-trade-offer-tracker",
"version": "0.5.1",
"main": "dist/index",
"typings": "dist/index",
"author": {
"name": "Gustavo Chevrand",
"email": "[email protected]",
"url": "https://gustavo-dev.vercel.app/"
},
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/gustavo-dev/steam-trade-offer-tracker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gustavo-dev/steam-trade-offer-tracker.git"
},
"keywords": [
"steam",
"trade offers",
"tracking"
],
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "jest"
},
"devDependencies": {
"@swc/core": "^1.2.152",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/steamid": "^2.0.1",
"jest": "^27.5.1",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"steamid": "^2.0.0"
}
}