tpmjs/packages/tools/official/contract-clause-scan/package.json
Ajax Davis 67fa89b1fe chore: use workspace references for registry packages
- Changed @tpmjs/registry-execute and @tpmjs/registry-search to workspace:*
- This allows the web app to use local workspace versions
- Published npm packages still available for external users
2026-01-25 11:37:59 +10:00

70 lines
1.6 KiB
JSON

{
"name": "@tpmjs/official-contract-clause-scan",
"version": "0.1.1",
"description": "Scans contract text to identify and categorize key clauses (termination, liability, IP, etc.)",
"type": "module",
"keywords": [
"tpmjs",
"legal",
"contract",
"clause",
"analysis"
],
"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/contract-clause-scan"
},
"homepage": "https://tpmjs.com",
"license": "MIT",
"tpmjs": {
"category": "legal",
"frameworks": [
"vercel-ai"
],
"tools": [
{
"name": "contractClauseScanTool",
"description": "Scans contract text to identify and categorize key clauses (termination, liability, IP, etc.)",
"parameters": [
{
"name": "contractText",
"type": "string",
"description": "Contract text to analyze",
"required": true
}
],
"returns": {
"type": "ContractClauses",
"description": "Identified clauses by category with locations"
}
}
]
},
"dependencies": {
"ai": "6.0.49"
}
}