-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "cag-js",
"version": "1.0.4",
"description": "Chunked Augmented Generation (CAG) algorithm for processing large text inputs with AI models",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch",
"prepare": "npm run build",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"cag",
"cag-js",
"chunked-augmented-generation",
"ai",
"text-processing",
"chunking",
"nlp",
"language-model"
],
"author": "Vivek Vellaiyappn Surulimuthu",
"license": "MIT",
"dependencies": {
"@langchain/textsplitters": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@babel/preset-typescript": "^7.22.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.5.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.0",
"regenerator-runtime": "^0.14.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"web-streams-polyfill": "^4.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vivekvells/cag-js.git"
},
"bugs": {
"url": "https://github.com/vivekvells/cag-js/issues"
},
"homepage": "https://github.com/vivekvells/cag-js#readme"
}