@travisennis/acai-brainstorm
Version:
A set of brainstorming agents and tools to use with AI.SDK.
42 lines (41 loc) • 1.27 kB
JSON
{
"name": "@travisennis/acai-brainstorm",
"version": "0.0.3",
"description": "A set of brainstorming agents and tools to use with AI.SDK.",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"keywords": [
"brainstorming",
"ai",
"llm"
],
"author": "Travis Ennis",
"license": "MIT",
"scripts": {
"build": "npm run compile",
"clean": "rm -rf ./dist/",
"compile": "rm -rf ./dist && tsc && cp -r ./dist/source/. ./dist && rm -rf ./dist/source",
"lint": "biome lint",
"lint:fix": "biome lint --unsafe --write",
"lint:staged": "biome lint --error-on-warnings --no-errors-on-unmatched --staged",
"prepare": "npm run compile",
"test": "node --test test/**/*.test.ts",
"pretest": "npm run compile",
"format": "biome format --write",
"oxlint": "npx oxlint@latest --ignore-path .gitignore --deny correctness --deny suspicous --deny pedantic --deny style --node-plugin",
"knip": "npx knip",
"check": "npx npm-check-updates --interactive --format group"
},
"dependencies": {
"ai": "^4.1.41",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.4",
"typescript": "^5.7.3"
}
}