-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "feather-ai",
"version": "0.2.2",
"description": "Feather: A lightweight agent framework for building AI agents with tools that auto-execute",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"copy-assets": "node copy-assets.js",
"postbuild": "npm run copy-assets",
"start": "node dist/index.js",
"test": "LOG_LEVEL=debug bun run src/runTests.ts | pino-pretty -c -t -l",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE",
"dist/gui",
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"ai",
"agent",
"feather",
"openrouter",
"llm",
"tools",
"function-calling",
"typescript"
],
"author": "Bootoshi",
"license": "MIT",
"dependencies": {
"http": "^0.0.1-security",
"inquirer": "^8.2.6",
"openai": "^4.77.0",
"openpipe": "^0.40.0",
"pino": "^8.14.0",
"pino-pretty": "^10.2.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/ws": "^8.5.13",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}