tinyagent-ts
Version:
Modern TypeScript framework for building AI agents with pluggable tools and ReAct reasoning
81 lines (80 loc) • 2.25 kB
JSON
{
"name": "tinyagent-ts",
"version": "0.3.0",
"description": "Modern TypeScript framework for building AI agents with pluggable tools and ReAct reasoning",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/core/prompts",
"README.md",
"LICENSE",
"CHANGELOG.md",
"tsconfig.base.json"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c && tsc -p tsconfig.build.json --emitDeclarationOnly",
"dev": "tsx new-docs/simple-agent.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"*.js\"",
"prepublishOnly": "npm run build",
"test": "jest --runInBand",
"test:live": "RUN_LIVE=true jest --runInBand",
"release": "standard-version"
},
"keywords": [
"ai",
"agent",
"typescript",
"framework",
"llm",
"ai-agent",
"autonomous-agent",
"react-pattern"
],
"author": "",
"license": "Business Source License 1.1",
"repository": {
"type": "git",
"url": "https://github.com/alchemiststudiosDOTai/tinyagent-ts.git"
},
"dependencies": {
"dotenv": "^16.3.1",
"execa": "^5.1.1",
"jsdom": "^26.1.0",
"node-fetch": "^2.7.0",
"reflect-metadata": "^0.2.1",
"yahoo-finance2": "^2.13.3",
"zod": "^3.24.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.50",
"@types/node-fetch": "^2.6.12",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rollup": "^3.29.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.4",
"typescript": "^5.3.3"
}
}