Some checks failed
Integration Tests / test-service-integration (push) Failing after 13m33s
JavaScript SDK Tests / test-js-sdk (push) Failing after 5m3s
Package Tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk]) (push) Failing after 5m51s
Package Tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core]) (push) Successful in 2m30s
Package Tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto]) (push) Successful in 56s
Package Tests / test-javascript-packages (map[name:aitbc-sdk-js path:packages/js/aitbc-sdk]) (push) Failing after 4m20s
Package Tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk]) (push) Successful in 4m50s
Package Tests / test-javascript-packages (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Failing after 1m16s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Failing after 6m43s
Security Scanning / security-scan (push) Successful in 17m26s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Has been cancelled
Smart Contract Tests / lint-solidity (push) Has been cancelled
- Update @aitbc/aitbc-sdk from 0.2.0 to 0.2.3 - Update @aitbc/aitbc-token from 0.1.0 to 0.2.3 - Aligns with AITBC v0.2.3 release notes - Major AI intelligence and agent transformation release - Includes security fixes and economic intelligence features
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "@aitbc/aitbc-sdk",
|
|
"version": "0.2.3",
|
|
"description": "AITBC JavaScript/TypeScript SDK for coordinator services, blockchain, and marketplace",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
"format": "prettier --write src/**/*.ts",
|
|
"prepublishOnly": "npm run build && npm test"
|
|
},
|
|
"dependencies": {
|
|
"cross-fetch": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^7.0.0",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.0",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^4.1.2"
|
|
},
|
|
"keywords": [
|
|
"aitbc",
|
|
"sdk",
|
|
"ai-compute",
|
|
"blockchain",
|
|
"gpu-marketplace",
|
|
"zk-proofs",
|
|
"receipts",
|
|
"marketplace",
|
|
"coordinator",
|
|
"typescript"
|
|
],
|
|
"author": {
|
|
"name": "AITBC Team",
|
|
"email": "team@aitbc.dev",
|
|
"url": "https://aitbc.bubuit.net"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oib/AITBC.git",
|
|
"directory": "packages/js/aitbc-sdk"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/oib/AITBC/issues"
|
|
},
|
|
"homepage": "https://aitbc.bubuit.net/docs/",
|
|
"engines": {
|
|
"node": ">=24.14.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|