Files
sdk-js/package.json
Guilherme Werner 5a580af4e5 Update package.json and client.ts
This commit updates the version number in the package.json file from 0.1.9 to 0.1.10. It also changes the access level of the setTokens() and clearTokens() methods in the client.ts file from private to protected.
2024-01-15 11:24:40 -03:00

42 lines
1.2 KiB
JSON

{
"name": "tribufu",
"version": "0.1.10",
"description": "Tribufu JS SDK",
"repository": "https://github.com/Tribufu/TribufuJs",
"author": "Tribufu <contact@Tribufu.com>",
"license": "MIT",
"type": "module",
"types": "./build/index.d.ts",
"exports": {
"import": "./build/index.mjs",
"require": "./build/index.cjs"
},
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc && node scripts/esbuild.js",
"prepare": "npm run build"
},
"dependencies": {
"@tribufu/mintaka": "0.1.3",
"axios": "^1.6.3",
"camelcase-keys": "^9.1.2",
"fp-ts": "^2.16.1",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"snakecase-keys": "^5.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.10",
"esbuild-node-externals": "^1.12.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}