-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.31 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
{
"name": "@federation-interservices-d-informatique/fiibot-common",
"version": "4.0.10",
"description": "Lib shared between FII bots",
"main": "dist/lib.js",
"typings": "dist/lib.d.ts",
"repository": "https://github.com/federation-interservices-d-informatique/fiibot-common",
"author": "FII Dev team and contributors",
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"module": "esnext",
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests",
"lint": "eslint . -c .eslintrc.yml",
"lint-fix": "eslint . -c .eslintrc.yml --fix",
"format": "prettier 'src/**/*.ts' --write",
"gendocs": "typedoc src/",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"discord.js": "^14.13.0",
"pskv": "^1.1.3"
}
}