-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"author": "Hrishi Olickel <hrishi[at]grey-wing.com>",
"name": "wishful-search",
"version": "0.4.9",
"license": "Apache-2.0",
"main": "dist/node/index.js",
"module": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"browser": "release/wishful-search.js",
"dependencies": {
"@anthropic-ai/sdk": "^0.16.1",
"@azure/openai": "^1.0.0-beta.9",
"openai": "^4.24.7",
"sql.js": "^1.8.0"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build:node": "tsc",
"build:browser": "webpack --mode production",
"build": "npm run build:node && npm run build:browser"
},
"devDependencies": {
"@types/fast-levenshtein": "^0.0.4",
"@types/hjson": "^2.4.4",
"@types/node": "^20.5.7",
"@types/sql.js": "^1.4.4",
"@types/terminal-kit": "^2.5.1",
"csv-parse": "^5.5.1",
"date-fns": "^3.3.0",
"fast-levenshtein": "^3.0.0",
"hjson": "^3.2.2",
"readline": "^1.3.0",
"rimraf": "^5.0.5",
"terminal-kit": "^3.0.0",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}