-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "friday-ng",
"version": "0.3.1",
"description": "Next-generation AI assistant with instant token streaming and multi-provider auto-setup (Pi Harness architecture)",
"packageManager": "npm@10",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"friday-ng": "friday-ng.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"friday-ng.js"
],
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true}); require('fs').rmSync('coverage', {recursive: true, force: true});\"",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"check": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"dev": "tsx watch src/cli.ts",
"start": "npm run build && node --max-old-space-size=4096 dist/cli.js --provider kilo -i",
"chat": "npm start",
"web": "npm --prefix web run build && npm --prefix web run start",
"web:dev": "npm --prefix web run dev",
"web:build": "npm --prefix web run build",
"prepublishOnly": "npm run clean && npm run build && npm run check && node -e \"const {execSync}=require('child_process');if(!execSync('git rev-parse --verify HEAD').toString().trim())throw new Error('uncommitted changes');\""
},
"engines": {
"node": ">=22.19.0"
},
"devDependencies": {
"@types/node": "^22.19.19",
"@vitest/coverage-v8": "^4.1.9",
"tsx": "^4.22.1",
"typescript": "^5.9.3",
"vite": "^7.1.7",
"vitest": "^4.1.9"
},
"dependencies": {
"openai": "6.40.0",
"typebox": "1.3.7"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@google/genai": "^1.0.0"
}
}