-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "vectra",
"author": "Steven Ickman",
"description": "A vector database that uses the local file system for storage.",
"version": "0.9.0",
"license": "MIT",
"keywords": [
"gpt"
],
"bugs": {
"url": "https://github.com/Stevenic/vectra/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Stevenic/vectra.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"vectra": "./bin/vectra.js"
},
"typesVersions": {
"<3.9": {
"*": [
"_ts3.4/*"
]
}
},
"dependencies": {
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^8.2.0",
"gpt-3-encoder": "1.1.4",
"json-colorizer": "^2.2.2",
"openai": "^3.2.1",
"turndown": "^7.1.2",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"resolutions": {
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/mocha": "^8.2.0",
"@types/assert": "^1.5.3",
"@types/turndown": "^5.0.1",
"@types/uuid": "9.0.1",
"@types/yargs": "17.0.24",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"ts-mocha": "10.0.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "tsc -b",
"build-docs": "typedoc --theme markdown --entryPoint botbuilder-m365 --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\botbuilder-ai .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - AI\" --readme none",
"build:rollup": "yarn clean && yarn build && api-extractor run --verbose --local",
"clean": "rimraf _ts3.4 lib tsconfig.tsbuildinfo node_modules",
"depcheck": "depcheck --config ../../.depcheckrc",
"lint": "eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"test": "npm-run-all build test:mocha",
"test:mocha": "nyc mocha tests",
"test:compat": "api-extractor run --verbose"
},
"files": [
"_ts3.4",
"lib",
"src"
]
}