-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 915 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
29
30
31
32
33
34
35
36
37
38
{
"name": "instant-chan",
"version": "1.0.0",
"description": "Create voice channel instantly",
"main": "index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx --env-file=.env --watch src/index.ts",
"lint": "eslint",
"format": "prettier -c '**/*.{mjs,ts}'",
"test": "vitest --run",
"test:watch": "vitest --watch"
},
"license": "MIT",
"author": {
"email": "gabriel.hamel.pro@gmail.com",
"name": "Gabriel Hamel",
"url": "https://gabrielhamel.fr"
},
"dependencies": {
"discord.js": "^14.15.3",
"effect": "^3.5.4"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"vitest": "^2.0.3"
},
"overrides": {
"eslint": "^9.6.0"
}
}