-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "@cordwork/core",
"description": "A beautiful Discord bot framework.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.1.11",
"author": {
"name": "raravel",
"email": "youn@tree-some.dev"
},
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register ./tests/example.test.ts",
"dev": "nodemon --watch src --watch package.json --watch tsconfig.js --delay 1 --exec 'npm run lint --silent; ts-node' src/index.ts",
"lint": "eslint src/**/*",
"build": "rm -rf dist; tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
"repository": {
"type": "git",
"url": "https://github.com/cordwork/core.git"
},
"dependencies": {
"@discordjs/rest": "^0.5.0",
"discord.js": "^14.1.2",
"reflect-metadata": "^0.1.13",
"tslog": "^3.3.3",
"uuid": "^8.3.2"
}
}