javascript-sdk/package.json
Florian Bouillon 1db0b1ab38
Updated SDK to support new incoming datas
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-02-13 20:04:50 +01:00

26 lines
478 B
JSON

{
"name": "@tcgdex/sdk",
"version": "1.8.0",
"main": "./tcgdex.js",
"types": "./tcgdex.d.ts",
"repository": "https://github.com/tcgdex/javascript-sdk.git",
"license": "MIT",
"devDependencies": {
"@types/node-fetch": "2.5.7",
"typescript": "^4.1.3"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"prepublishOnly": "yarn build"
},
"files": [
"*.js",
"*.d.ts",
"**/*.js",
"**/*.d.ts"
]
}