-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "clank",
"version": "1.0.0",
"description": "",
"main": "clank.js",
"dependencies": {
"@types/node": "^14.14.10",
"axios": "^0.21.0",
"class-transformer": "^0.3.1",
"discord.js": "^12.5.1",
"openai": "^3.0.0",
"rpg-dice-roller": "^4.5.2",
"source-map-support": "^0.5.19"
},
"optionalDependencies": {
"fsevents": "^2.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.3.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-unicorn": "^25.0.1",
"mocha": "^8.3.0",
"ts-node": "10.8.1",
"ts-node-dev": "2.0.0",
"typescript": "^4.1.3"
},
"scripts": {
"compile": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/*.ts",
"start": "ts-node-dev --respawn --transpile-only src/*.ts",
"lint": "eslint ./src/*",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EddieEldridge/clank.git"
},
"author": "Eddie Eldridge",
"license": "ISC",
"bugs": {
"url": "https://github.com/EddieEldridge/clank/issues"
},
"homepage": "https://github.com/EddieEldridge/clank#readme"
}