-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
48
49
{
"name": "steamcmd-interface",
"version": "5.0.0",
"keywords": [
"node",
"steamcmd",
"steam"
],
"description": "Allows you to access and use SteamCMD via JavaScript",
"license": "MIT",
"author": "Jens Tschirpig",
"main": "dist/steam-cmd.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jens1101/SteamCMD-JS-Interface.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"test": "standard && node --experimental-vm-modules node_modules/.bin/jest"
},
"dependencies": {
"axios": "^1.7.2",
"extract-zip": "^2.0.1",
"file-type": "^19.0.0",
"node-pty": "^1.0.0",
"strip-ansi": "^7.1.0",
"tar": "^7.2.0",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"jest": "^29.7.0",
"rollup": "^4.18.0",
"standard": "^17.1.0"
},
"standard": {
"parser": "@babel/eslint-parser"
}
}