-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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
{
"name": "eliza",
"version": "1.0.0",
"description": "A little bot I made",
"type": "module",
"repository": "https://github.com/nopeless/eliza-discord-bot",
"author": "nopeless <[email protected]>",
"license": "MIT",
"private": true,
"main": "dist/run-bot.js",
"scripts": {
"build": "rimraf dist tsconfig.tsbuildinfo && copyfiles -u 1 \"src/**/*.{json,txt}\" dist && tsc",
"start": "node dist/run-bot.js",
"dev": "tsx src/run-bot.ts",
"dev:watch": "tsx watch --onSuccess \"npm run build && npm run dev\"",
"test": "vitest",
"test:cli": "vitest --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"cd:restart": "git fetch && git reset --hard origin/main && yarn install --frozen-lockfile && yarn build && yarn start",
"cli": "tsx --tsconfig ./test/tsconfig.json test/cli.ts --inspect",
"train": "tsx src/scripts/train.ts"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"consola": "^3.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.41.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-quotes": "^0.0.1",
"eslint-plugin-prettier": "^4.2.1",
"nopeless-config": "latest",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "latest",
"vitest": "^0.31.1"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"extensionless": "^1.4.5",
"hellgate": "^2.2.2",
"natural": "^6.3.0",
"node-nlp": "^4.27.0",
"spica-node": "0.0.738-patch5",
"url-unshort": "^6.1.0",
"wink-eng-lite-web-model": "^1.5.0",
"wink-nlp": "^1.14.0",
"wordnet-db": "^3.1.14"
},
"packageManager": "[email protected]"
}