Files
aitbc/packages/js/aitbc-sdk/package.json
oib 6901e0084f docs/config/packages: add v0.1 release prep, security status, and SDK enhancements
- Add Stage 23 roadmap for v0.1 release preparation with PyPI/npm publishing, deployment automation, and security audit milestones
- Document competitive differentiators: zkML/FHE integration, hybrid TEE/ZK verification, on-chain model marketplace, and geo-low-latency matching
- Update security documentation with smart contract audit results (0 vulnerabilities, 35 OpenZeppelin warnings)
- Add security-first setup
2026-02-19 21:47:28 +01:00

69 lines
1.6 KiB
JSON

{
"name": "@aitbc/aitbc-sdk",
"version": "0.1.0",
"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": "^1.6.0"
},
"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": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}