-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 KB
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
{
"name": "@eliware/ask",
"type": "module",
"version": "1.1.6",
"description": "A concise Discord assistant (\"/ask\") for quick answers, web searches, and image generation — supports slash command, mention/DM fallbacks, localization, and usage tracking.",
"main": "ask.mjs",
"scripts": {
"start": "node ask.mjs",
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent --coverage",
"test:gaps": "npm test 2>&1 | grep '|' | grep -vF '| 100 | 100 | 100 | 100 |'",
"lint": "npx oxlint .",
"pack": "npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/ask.git"
},
"keywords": [
"discord",
"slash-command",
"ask",
"assistant",
"ai",
"openai",
"image-generation",
"web-search",
"localization",
"rate-limiting",
"nodejs"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/ask/issues"
},
"homepage": "https://github.com/eliware/ask#readme",
"devDependencies": {
"jest": "^30.4.2",
"oxlint": "^1.78.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).mjs",
"**/?(*.)+(spec|test).cjs"
]
},
"dependencies": {
"@eliware/common": "^1.1.8",
"@eliware/discord": "^1.1.4",
"@eliware/openai": "^1.1.11",
"dotenv": "^17.4.2"
}
}