-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 948 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
40
41
42
43
44
45
{
"name": "csgo-inventory-csv",
"description": "Download your csgo inventory to a csv and fetch latest prices for each item. ",
"license": "MIT",
"version": "0.1.6",
"type": "module",
"keywords": [
"csgo",
"counter strike",
"steam",
"steam inventory",
"csgo bot"
],
"contributors": [
"Lokesh Sharma <me@imlokesh.com>"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/imlokesh/csgo-inventory-csv"
},
"main": "build/index.js",
"bin": {
"csgo-inventory-csv": "build/index.js"
},
"files": [
"build",
"README.md"
],
"dependencies": {
"axios": "^1.3.6",
"csv-stringify": "^6.2.10",
"fast-xml-parser": "^4.2.2",
"inquirer": "^9.1.5",
"node-cache": "^5.1.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.15.12",
"typescript": "^5.0.4"
}
}