-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "oak-codex-discord-bot",
"version": "0.1.0",
"private": true,
"description": "Discord bot that runs OpenAI Codex through the Codex app-server.",
"type": "module",
"bin": {
"oak-api": "./dist/src/oakCli.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "swc src -d dist --config-file ./.swcrc",
"start": "node dist/src/index.js",
"start:bot": "node dist/src/bot.js",
"check": "npm run format:check && npm run lint && npm run typecheck && npm run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"typecheck": "tsc --noEmit",
"dry": "npm run build && OAK_DRY_RUN=1 node dist/src/bot.js"
},
"engines": {
"node": ">=20.11"
},
"dependencies": {
"discord.js": "^14.26.2",
"dotenv": "^17.4.1"
},
"devDependencies": {
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.24",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
}
}