-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 987 Bytes
/
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
{
"name": "nodebb-plugin-openai",
"version": "1.2.0",
"description": "A NodeBB OpenAI plugin",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/nodebb/nodebb-plugin-openai"
},
"keywords": [
"nodebb",
"plugin",
"openai"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nodebb/nodebb-plugin-openai/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^3.2.0"
},
"dependencies": {
"openai": "4.53.2"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-angular": "19.3.0",
"eslint": "8.57.0",
"eslint-config-nodebb": "0.2.1",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"lint-staged": "15.2.7"
}
}