Skip to content

Commit

Permalink
build: release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladpuz committed Mar 6, 2023
1 parent 1315a13 commit 5b4005b
Show file tree
Hide file tree
Showing 2 changed files with 164 additions and 123 deletions.
41 changes: 20 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,51 @@
{
"name": "steam-market",
"version": "3.0.0-beta.4",
"description": "Steam community market API client",
"version": "3.0.0",
"description": "Steam market API client",
"keywords": [
"steam",
"community",
"market",
"api",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/vladislav-puzyrev/steam-market.git"
},
"license": "MIT",
"author": "Vladislav Puzyrev",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/vladislav-puzyrev/steam-market.git"
},
"scripts": {
"build": "yarn run clean:build && tsc",
"docs": "yarn run clean:docs && yarn run docs:pull && yarn run docs:typedoc && yarn run docs:push",
"docs:pull": "git clone https://github.com/vladislav-puzyrev/steam-market.wiki.git docs && rimraf docs/!(.git)",
"docs:typedoc": "typedoc --theme github-wiki --excludePrivate --githubPages false --cleanOutputDir false src/index.ts",
"docs:push": "cd docs && git add . && git diff-index --quiet HEAD || git commit -m TypeDoc && git push",
"clean": "yarn run clean:build && yarn run clean:docs",
"clean:build": "rimraf build",
"clean:docs": "rimraf docs",
"test": "yarn run test:typescript && yarn run test:eslint",
"test:typescript": "tsc --noEmit",
"test:eslint": "eslint ."
"docs": "yarn run clean:docs && yarn run docs:pull && yarn run docs:typedoc && yarn run docs:push",
"docs:pull": "git clone https://github.com/vladislav-puzyrev/steam-market.wiki.git docs && rimraf docs/!(.git)",
"docs:push": "cd docs && git add . && git diff-index --quiet HEAD || git commit -m TypeDoc && git push",
"docs:typedoc": "typedoc --theme github-wiki --excludePrivate --githubPages false --cleanOutputDir false src/index.ts",
"verify": "yarn run verify:types && yarn run verify:lint",
"verify:lint": "eslint .",
"verify:types": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.3.2",
"axios": "^1.3.4",
"currency-codes": "^2.1.0",
"iso-639-1": "^2.1.15",
"proxy-string-parser": "^3.0.0"
"proxy-string-parser": "^3.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^4.1.2",
"typedoc": "^0.23.24",
"rimraf": "^4.3.1",
"typedoc": "^0.23.26",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
Expand Down
Loading

0 comments on commit 5b4005b

Please sign in to comment.