-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
55
56
57
{
"name": "@minesa-org/mini-interaction",
"version": "0.4.18",
"description": "Mini interaction, connecting your app with Discord via HTTP-interaction (Vercel support).",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"postbuild": "tsx scripts/postbuild.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"patch": "npm version patch",
"publish:npm": "npm publish",
"publish:gh": "npm publish --registry=https://npm.pkg.github.com",
"test": "tsx --test src/**/*.test.ts",
"lint:type": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minesa-org/mini-interaction.git"
},
"keywords": [
"discord",
"interactions",
"http-interaction",
"vercel",
"typescript"
],
"author": "Minesa",
"license": "MIT",
"bugs": {
"url": "https://github.com/minesa-org/mini-interaction/issues"
},
"homepage": "https://github.com/minesa-org/mini-interaction#readme",
"dependencies": {
"@vercel/functions": "^1.6.0",
"discord-api-types": "^0.38.32",
"discord-interactions": "^4.4.0",
"dotenv": "^17.2.3",
"mongodb": "^7.0.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}