forked from discord/discord-interactions-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "discord-interactions",
"version": "3.4.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": ">=12"
},
"bugs": {
"url": "https://github.com/discord/discord-interactions-js/issues"
},
"homepage": "https://github.com/discord/discord-interactions-js",
"files": [
"dist/**/*"
],
"prepare": "yarn run build",
"types": "dist/index.d.ts",
"keywords": [
"discord"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "eslint --fix '**/*.ts' '**/*.js'",
"lint": "eslint '**/*.ts' '**/*.js'",
"test": "jest --verbose"
},
"dependencies": {
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"body-parser": "^1.19.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jest": "^27.5.1",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"ts-jest": "^27.1.3",
"typescript": "^4.1.2"
}
}