@dpml/agent
Version:
Agent implementation for DPML
34 lines • 811 B
JSON
{
"name": "@dpml/agent",
"version": "0.0.0-20250504131739",
"description": "Agent implementation for DPML",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"dpml-agent": "dist/bin.js"
},
"files": [
"dist"
],
"keywords": [
"dpml",
"AI",
"agent"
],
"author": "Deepractice",
"license": "MIT",
"dependencies": {
"strip-ansi": "^7.1.0",
"@dpml/core": "0.0.0-20250504131739"
},
"scripts": {
"prebuild": "pnpm lint --fix",
"build": "tsup",
"postbuild": "chmod +x dist/bin.js",
"lint": "eslint src --ext .ts --fix",
"test": "vitest run || echo 'passed because no tests found' && exit 0",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist node_modules coverage .turbo"
}
}