Files
feynman/package.json
2026-04-17 13:45:16 -07:00

106 lines
2.4 KiB
JSON

{
"name": "@companion-ai/feynman",
"version": "0.2.29",
"description": "Research-first CLI agent built on Pi and alphaXiv",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.19.0 <25"
},
"bin": {
"feynman": "bin/feynman.js"
},
"files": [
"bin/",
"dist/",
"metadata/",
".feynman/agents/",
".feynman/runtime-workspace.tgz",
".feynman/settings.json",
".feynman/SYSTEM.md",
".feynman/themes/",
"extensions/",
"prompts/",
"logo.mjs",
"logo.d.mts",
"scripts/",
"skills/",
"AGENTS.md",
"CONTRIBUTING.md",
"README.md",
".env.example"
],
"scripts": {
"preinstall": "node ./scripts/check-node-version.mjs",
"build": "tsc -p tsconfig.build.json",
"build:native-bundle": "node ./scripts/build-native-bundle.mjs",
"dev": "tsx src/index.ts",
"prepack": "node ./scripts/clean-publish-artifacts.mjs && npm run build && node ./scripts/prepare-runtime-workspace.mjs",
"start": "tsx src/index.ts",
"start:dist": "node ./bin/feynman.js",
"test": "node --import tsx --test --test-concurrency=1 tests/*.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"pi-package",
"research-agent",
"literature-review",
"experiments"
],
"pi": {
"extensions": [
"./extensions"
],
"prompts": [
"./prompts"
],
"skills": [
"./skills"
]
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@companion-ai/alpha-hub": "^0.1.3",
"@mariozechner/pi-ai": "^0.67.6",
"@mariozechner/pi-coding-agent": "^0.67.6",
"@sinclair/typebox": "^0.34.49",
"dotenv": "^17.4.2"
},
"overrides": {
"basic-ftp": "5.3.0",
"@modelcontextprotocol/sdk": {
"@hono/node-server": "1.19.14",
"hono": "4.12.14"
},
"express": {
"router": {
"path-to-regexp": "8.4.2"
}
},
"proxy-agent": {
"pac-proxy-agent": {
"get-uri": {
"basic-ftp": "5.3.0"
}
}
},
"protobufjs": "7.5.5",
"minimatch": {
"brace-expansion": "5.0.5"
}
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getcompanion-ai/feynman.git"
},
"homepage": "https://github.com/getcompanion-ai/feynman#readme",
"bugs": {
"url": "https://github.com/getcompanion-ai/feynman/issues"
}
}