-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "@progressive-victory/client",
"version": "0.3.6",
"description": "Modified Discord.js client for discord bots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Progressive-Victory/discord-client",
"author": "Okami",
"contributors": [
"John William Bowen <[email protected]>"
],
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint . --ext .ts",
"format": "prettier --write . && eslint --fix src __tests__",
"build": "swc src -d dist -D --strip-leading-paths && tsc --emitDeclarationOnly",
"start": "node ./dist/index.js",
"prepublish": "yarn build",
"test": "jest"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@fluent/bundle": "^0.18.0",
"discord.js": "^14.14.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^1.5.4",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}