-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "@distype/cmd",
"version": "0.11.0",
"description": " A command handler for Distype.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"docs": "rimraf ./docs && typedoc",
"lint": "prettier ./src",
"lint:fix": "prettier ./src --write",
"prepublishOnly": "npm i --include=dev && npm run build"
},
"keywords": [
"bot",
"commands",
"discord",
"discord-api",
"discord-bot",
"discordapp",
"distype"
],
"homepage": "https://distypecmd.br88c.dev",
"bugs": {
"url": "https://github.com/distype/cmd/issues"
},
"license": "Apache-2.0",
"author": "BR88C",
"repository": {
"type": "git",
"url": "git+https://github.com/distype/cmd.git"
},
"dependencies": {
"discord-api-types": "0.38.14",
"distype": "^3.0.1"
},
"devDependencies": {
"@types/node": "^24.0.8",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=24.3.0",
"npm": ">=11.4.2"
},
"private": false
}