This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.2 KB
/
package.json
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
81
82
83
{
"name": "nolita",
"version": "2.2.0",
"description": "",
"main": "./dist/index.js",
"files": [
"dist/**/*",
"npm-shrinkwrap.json"
],
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"build": "rm -rf ./dist && tsc",
"build:docs": "./build-docs.sh",
"build:openapi": "node --import tsx ./dev_utils/generateOpenApiSpec.ts",
"test": "jest",
"server": "npx tsx ./src/server/index.ts"
},
"bin": {
"nolita": "./dist/bin/index.js"
},
"types": "./dist/types/index.d.ts",
"keywords": [],
"author": "HDR",
"license": "MIT",
"dependencies": {
"@ai-sdk/anthropic": "^0.0.43",
"@ai-sdk/openai": "^0.0.48",
"@hono/node-server": ">=1.10.1",
"@hono/swagger-ui": "^0.2.1",
"@hono/zod-openapi": "^0.9.8",
"@hono/zod-validator": "^0.2.0",
"@inquirer/prompts": "^5.3.8",
"@instructor-ai/instructor": "^1.5.0",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.14.202",
"@types/turndown": "^5.0.4",
"ai": "^3.3.19",
"chrome-paths": "^1.0.1",
"debug": "^4.3.4",
"dotenv": "^16.4.4",
"exponential-backoff": "^3.1.1",
"hono": "^4.1.1",
"json-schema-to-zod": "^2.0.14",
"llm-polyglot": "^2.0.0",
"lodash": "^4.17.21",
"node-llama-cpp": "^2.8.12",
"ollama-ai-provider": "^0.12.0",
"openai": "^4.56.1",
"ora": "^5.4.1",
"out-url": "^1.2.2",
"puppeteer": "^22.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"simple-git": "^3.24.0",
"turndown": "^7.1.3",
"type-fest": "^4.10.2",
"typescript": "~5.3.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.32",
"eslint": "^8.56.0",
"globals": "^15.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typedoc": "^0.26.0",
"typedoc-plugin-markdown": "^4.1.2",
"typedoc-plugin-zod": "^1.1.2",
"typescript-eslint": "^7.16.0",
"yargs": "^17.7.2"
}
}