-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "tf2autobot",
"version": "5.15.0",
"description": "Fully automated TF2 trading bot advertising on www.backpack.tf using prices from www.prices.tf, Originally made by Nicklason.",
"main": "dist/app.js",
"scripts": {
"release": "np --no-cleanup --no-publish",
"build": "tsc -p ./tsconfig.build.json",
"pretest": "npm run lint",
"test": "vitest run",
"prelint": "npm run eslint-check",
"lint": "eslint .",
"prettier": "prettier --check src/**/* && prettier --check *.json",
"eslint-check": "npx eslint-config-prettier src/app.ts"
},
"engines": {
"node": ">= 22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TF2Autobot/tf2autobot.git"
},
"author": "TF2Autobot/IdiNium",
"license": "MIT",
"bugs": {
"url": "https://github.com/TF2Autobot/tf2autobot/issues"
},
"updaterepo": true,
"updateMessage": "Steam/TF2 is quite unstable right now, update/restart at your own will.",
"homepage": "https://github.com/TF2Autobot/tf2autobot#readme",
"dependencies": {
"@tf2autobot/bptf-listings": "^5.7.10",
"@tf2autobot/bptf-login": "^2.4.0",
"@tf2autobot/filter-axios-error": "^1.5.5",
"@tf2autobot/jsonlint": "^1.0.0",
"@tf2autobot/steamcommunity": "^3.48.5",
"@tf2autobot/tf2": "^1.3.9",
"@tf2autobot/tf2-currencies": "^2.0.1",
"@tf2autobot/tf2-schema": "^4.5.3",
"@tf2autobot/tf2-sku": "^2.0.4",
"@tf2autobot/tradeoffer-manager": "^2.18.3",
"async": "^3.2.6",
"axios": "^1.13.2",
"bluebird": "^3.7.2",
"bluebird-global": "^1.0.1",
"body-parser": "^2.2.1",
"callback-queue": "^3.0.0",
"change-case": "^5.4.4",
"cheerio": "^1.1.2",
"dayjs": "^1.11.19",
"death": "^1.1.0",
"discord.js": "^14.25.1",
"dot-prop": "^10.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"isobject": "^4.0.0",
"js-levenshtein": "^1.1.6",
"jsonschema": "^1.5.0",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.2.3",
"pjson": "^1.0.9",
"pluralize": "^8.0.0",
"pm2": "^6.0.14",
"pretty-ms": "^9.3.0",
"reconnecting-websocket": "^4.4.0",
"retry": "^0.13.1",
"semver": "^7.7.3",
"socket.io-client": "^4.8.3",
"steam-totp": "^2.1.2",
"steam-user": "^5.3.0",
"steamid": "^2.1.0",
"url": "^0.11.4",
"valid-url": "^1.0.9",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"write-file-atomic": "^7.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.2",
"@types/async": "^3.2.25",
"@types/bluebird-global": "^3.5.18",
"@types/death": "^1.1.5",
"@types/express": "^5.0.6",
"@types/graceful-fs": "^4.1.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.4",
"@types/pluralize": "^0.0.33",
"@types/request": "^2.48.13",
"@types/retry": "^0.12.5",
"@types/semver": "^7.7.1",
"@types/valid-url": "^1.0.7",
"@types/write-file-atomic": "^4.0.3",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tsdoc": "^0.5.0",
"global-agent": "^3.0.0",
"prettier": "^3.7.4",
"socket.io-mock": "^1.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
},
"private": true,
"_moduleAliases": {
"@pricer": "dist/lib/pricer"
}
}