Files
feynman/package.json
2026-03-22 20:20:26 -07:00

72 lines
1.6 KiB
JSON

{
"name": "@companion-ai/feynman",
"version": "0.1.5",
"description": "Research-first CLI agent built on Pi and alphaXiv",
"type": "module",
"bin": {
"feynman": "./bin/feynman.js"
},
"files": [
"bin/",
"dist/",
".pi/agents/",
".pi/settings.json",
".pi/themes/",
"extensions/",
"prompts/",
"scripts/",
"skills/",
"README.md",
".env.example"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/index.ts",
"postinstall": "node ./scripts/patch-embedded-pi.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"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
},
"dependencies": {
"@companion-ai/alpha-hub": "^0.1.2",
"@mariozechner/pi-ai": "^0.56.1",
"@mariozechner/pi-coding-agent": "^0.56.1",
"@sinclair/typebox": "^0.34.41",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.6.0"
},
"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"
}
}