@parcl-finance/product-sdk
Version:
TypeScript SDK for interacting with Parcl's product APIs
78 lines • 1.99 kB
JSON
{
"name": "@parcl-finance/product-sdk",
"version": "0.2.3",
"description": "TypeScript SDK for interacting with Parcl's product APIs",
"peerDependencies": {
"@project-serum/anchor": "0.24.2",
"@solana/web3.js": "^1.54.0",
"axios": "^1.4.0",
"buffer": "^6.0.3",
"decimal.js": "^10.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.22.5",
"@project-serum/anchor": "0.24.2",
"@solana/web3.js": "^1.54.0",
"@types/bn.js": "^5.1.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"axios": "^1.4.0",
"babel-jest": "^28.1.3",
"buffer": "^6.0.3",
"decimal.js": "^10.4.0",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.2",
"tweetnacl": "^1.0.3",
"typedoc": "^0.23.20",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"publishConfig": {
"scope": "@parcl-finance"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"engines": {
"node": ">=14"
},
"keywords": [
"parcl",
"solana",
"real-estate",
"trading",
"sdk",
"typescript"
],
"author": "Thomas Bonanni <tom@parcl.co>",
"license": "MIT",
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"explicitTypes": "always",
"bracketSpacing": true,
"trailingComma": "es5"
},
"dependencies": {
"tslib": "^2.6.2"
},
"scripts": {
"build": "pnpm clean && tsc --build ./tsconfig.json && tsc --build ./tsconfig-cjs.json",
"clean": "rm -rf ./dist",
"doc": "set -ex; typedoc --treatWarningsAsErrors",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:w": "jest --watch"
}
}