forked from getcompanion-ai/feynman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@companion-ai/feynman",
"version": "0.2.14",
"description": "Research-first CLI agent built on Pi and alphaXiv",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"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",
"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": "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": {
"@companion-ai/alpha-hub": "^0.1.2",
"@mariozechner/pi-ai": "^0.62.0",
"@mariozechner/pi-coding-agent": "^0.62.0",
"@sinclair/typebox": "^0.34.48",
"dotenv": "^17.3.1"
},
"devDependencies": {
"@types/node": "^25.5.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"
}
}