-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.3 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
{
"name": "@folder/synonyms",
"version": "2.0.2",
"license": "MIT",
"description": "Get synonyms for a word from OpenAI GPT-3 or GPT-4, or the WordsAPI. Optionally breaks hyphenated words into their parts and gets synonyms for each one. API and CLI.",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "folder/synonyms",
"homepage": "https://github.com/folder/synonyms",
"bugs": {
"url": "https://github.com/folder/synonyms/issues"
},
"main": "index.js",
"bin": {
"synonyms": "./bin/cli.js"
},
"scripts": {
"test": "mocha test/*.js"
},
"dependencies": {
"dotenv": "^16.3.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"gulp-format-md": "^2.0.0",
"mocha": "^10.2.0"
},
"keywords": [
"synonyms",
"thesaurus",
"dictionary",
"word",
"words",
"synonym",
"language",
"english",
"api",
"gpt-3",
"gpt-4",
"openai",
"wordsapi",
"words-api",
"ai",
"llm",
"chatgpt"
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"get-pkg"
]
},
"reflinks": [
"get-pkg"
],
"lint": {
"reflinks": true
}
}
}