@kya-os/core
Version:
Core types, utilities, and base classes for KYA-OS SDK
47 lines (46 loc) • 1.03 kB
JSON
{
"name": "@kya-os/core",
"version": "0.1.0-alpha.1",
"description": "Core types, utilities, and base classes for KYA-OS SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"publish:alpha": "npm publish --tag alpha"
},
"repository": {
"type": "git",
"url": "https://github.com/vouched/kya-os.git",
"directory": "packages/core"
},
"keywords": [
"kya-os",
"core",
"identity",
"mcp-i"
],
"author": "Dylan Hobbs <dylan@vouched.id>",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"publishConfig": {
"access": "public"
}
}