Files
sdk-js/package.json
Guilherme Werner ebd04dbc78 Prototype API (#2)
* Add oauth2 client

* Update LICENSE.txt

* Add oauth2 types

* Prepare for publish
2023-12-31 15:15:16 -03:00

36 lines
990 B
JSON

{
"name": "tribufu",
"version": "0.1.0",
"description": "Tribufu JS SDK",
"repository": "https://github.com/Tribufu/TribufuJs",
"author": "Tribufu <contact@Tribufu.com>",
"license": "Apache-2.0",
"type": "module",
"exports": {
"import": "./build/index.mjs",
"require": "./build//index.cjs"
},
"scripts": {
"clean": "rimraf build",
"build": "yarn clean && tsc && node scripts/esbuild.js"
},
"dependencies": {
"@types/express": "^4.17.21",
"axios": "^1.6.3",
"camelcase-keys": "^9.1.2",
"fp-ts": "^2.16.1",
"json-bigint": "^1.0.0",
"snakecase-keys": "^5.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.3",
"esbuild": "^0.19.10",
"esbuild-node-externals": "^1.12.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}