- Updated all packages from ai@6.0.23 to ai@6.0.49 - Added pnpm override to ensure consistent version - Created changeset for publishing affected packages
82 lines
2 KiB
JSON
82 lines
2 KiB
JSON
{
|
|
"name": "@tpmjs/tools-multiple-testing-adjust",
|
|
"version": "0.2.0",
|
|
"description": "Adjust p-values for multiple testing using Bonferroni, Benjamini-Hochberg, or Holm methods",
|
|
"type": "module",
|
|
"keywords": [
|
|
"tpmjs",
|
|
"statistics",
|
|
"ai",
|
|
"multiple-testing",
|
|
"p-value-adjustment"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anthropics/tpmjs.git",
|
|
"directory": "packages/tools/official/multiple-testing-adjust"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"license": "MIT",
|
|
"tpmjs": {
|
|
"category": "statistics",
|
|
"frameworks": [
|
|
"vercel-ai"
|
|
],
|
|
"tools": [
|
|
{
|
|
"name": "multipleTestingAdjustTool",
|
|
"description": "Adjust p-values for multiple testing using Bonferroni, BH, or Holm methods",
|
|
"parameters": [
|
|
{
|
|
"name": "pValues",
|
|
"type": "number[]",
|
|
"description": "Array of p-values to adjust",
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "method",
|
|
"type": "string",
|
|
"description": "Adjustment method: bonferroni, bh, or holm (default: bonferroni)",
|
|
"required": false
|
|
},
|
|
{
|
|
"name": "alpha",
|
|
"type": "number",
|
|
"description": "Significance level (default: 0.05)",
|
|
"required": false
|
|
}
|
|
],
|
|
"returns": {
|
|
"type": "MultipleTestingResult",
|
|
"description": "Object with adjusted p-values, significant test indices, and metadata"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ai": "6.0.49"
|
|
}
|
|
}
|