-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "eleventy-plugin-gpt4all",
"version": "0.0.3",
"description": "An eleventy plugin for generating static assets from text prompts",
"main": "index.js",
"type": "commonjs",
"scripts": {
"coverage": "node --test --experimental-test-coverage",
"test": "node --test",
"lint": "eslint index.js index.test.js"
},
"keywords": [
"genai",
"ai",
"gpt",
"gpt4all",
"eleventy"
],
"author": "Douglas Wade <douglas.b.wade@gmail.com>",
"license": "MIT",
"dependencies": {
"gpt4all": "^4.0.0",
"jsdom": "^25.0.1",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/node": "22.7.5",
"eslint": "^9.4.0",
"globals": "^15.4.0"
},
"files": [
"index.js",
"package.json",
"README.md"
],
"bugs": {
"url": "https://github.com/doug-wade/eleventy-plugin-gpt4all/issues?q=is%3Aissue+is%3Aopen"
},
"homepage": "https://github.com/doug-wade/eleventy-plugin-gpt4all",
"repository": {
"url": "git+https://github.com/doug-wade/eleventy-plugin-gpt4all.git"
},
"packageManager": "yarn@4.3.0"
}