-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 902 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
{
"name": "steamwebapi-trade-bot",
"version": "1.0.1",
"description": "The official TypeScript library for the Steamwebapi Trade Bot",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run lint && pnpm run build && changeset publish"
},
"keywords": [
"steamwebapi",
"trade-bot",
"typescript",
"steam",
"api",
"wrapper"
],
"author": "Nadir Hajiyev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NadirHaciyev/steamwebapi-trade-bot"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7"
}
}