Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-11 09:43:23 +01:00
commit f235c62c58
31 changed files with 1474 additions and 0 deletions

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "@tcgdex/sdk",
"version": "1.0.5",
"main": "./tcgdex.js",
"types": "./types/tcgdex.d.ts",
"repository": "https://git.delta-wings.net/tcgdex/javascript-sdk.git",
"license": "MIT",
"devDependencies": {
"@types/node-fetch": "^2.5.4",
"typescript": "^3.7.5"
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"prepublishOnly": "yarn build"
},
"files": [
"*.js",
"*.d.ts",
"**/*.js",
"**/*.d.ts"
]
}