-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 863 Bytes
/
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
{
"name": "casanova",
"version": "0.0.2",
"description": "A powerful, fully typed framework for Discord.js.",
"main": "dist/index.js",
"repository": "https://github.com/PlutonusDev/Casanova",
"author": "PlutonusDev <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .js,.ts . --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"watch": "tsc -w",
"build": "tsc",
"prepublish": "yarn format && yarn lint && yarn build"
},
"private": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"discord.js": "^13.6.0"
}
}