mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
4462d2d755
* chore: boilerplate, refactor in future * chore: boilerplate * feat: can compile succesfully * document .gyp file * add src, test and fix gyp * progress on prompting and some helper methods * add destructor and basic prompting work, prepare download function * download function done * download function edits and adding documentation * fix bindings memory issue and add tests and specs * add more documentation and readme * add npmignore * Update README.md Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> * Update package.json - redundant scripts Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> --------- Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com>
20 lines
320 B
JSON
20 lines
320 B
JSON
{
|
|
"name": "gpt4all-ts",
|
|
"packageManager": "yarn@3.5.1",
|
|
"gypfile": true,
|
|
"scripts": {
|
|
"test": "node ./test/index.mjs"
|
|
},
|
|
"dependencies": {
|
|
"bindings": "^1.5.0",
|
|
"node-addon-api": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.1.5"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18.x.x"
|
|
}
|
|
|
|
}
|