trender-client
Version:
Official Trender client API
56 lines (55 loc) • 1.56 kB
JSON
{
"name": "trender-client",
"version": "1.3.0",
"description": "Official Trender client API",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/trenderapp/trender-client.git"
},
"author": "trender",
"license": "GPL-3.0",
"private": false,
"keywords": [
"Api",
"Trender",
"typescript",
"client",
"official",
"simple"
],
"scripts": {
"format": "prettier --write src/**/*.ts",
"test": "npm run lint && npm run lint:typings && npm run test:typescript",
"lint": "eslint src",
"lint:typings": "tslint src/index.ts",
"test:typescript": "tsc --noEmit",
"lint:fix": "eslint src --fix",
"dev": "node ./test/index.mjs",
"dev:ts": "ts-node ./test/index.ts",
"build": "rm -rf ./dist && tsc && cp README.md ./dist/README.md && cp package.json ./dist/package.json && cp LICENSE ./dist/LICENSE",
"update": "yarn upgrade-interactive --latest"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.2",
"@types/ws": "^8.5.3"
},
"dependencies": {
"axios": "^0.27.2",
"ws": "^8.8.1"
},
"engines": {
"node": ">=14.6.0",
"npm": ">=5.0.0"
}
}