-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "discord-interactions",
"version": "4.1.0",
"description": "Helpers for discord interactions",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/discord/discord-interactions-js.git"
},
"engines": {
"node": ">=18.4.0"
},
"bugs": {
"url": "https://github.com/discord/discord-interactions-js/issues"
},
"homepage": "https://github.com/discord/discord-interactions-js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"keywords": [
"discord"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"build:watch": "tsc --watch",
"fix": "biome check --apply .",
"lint": "biome check .",
"test": "jest --verbose"
},
"dependencies": {
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/express": "^4.17.9",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}