-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "deploy-interactions",
"version": "0.2.5",
"description": "An executable library for registering discord application commands via @discordjs/rest",
"author": "ckohen",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest run",
"prebuild": "npm run clean",
"build": "tsc --build --force src",
"clean": "rimraf dist",
"lint": "eslint src --ext mjs,js,ts",
"lint:fix": "eslint src --ext mjs,js,ts --fix",
"format": "prettier write **/*.{ts,js,json,yml,yaml}",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckohen/deploy-interactions.git"
},
"bugs": {
"url": "https://github.com/ckohen/deploy-interactions/issues"
},
"homepage": "https://github.com/ckohen/deploy-interactions#readme",
"keywords": [
"discord",
"interactions",
"commands",
"api",
"bot",
"node",
"discordapp"
],
"bin": {
"deploy-interactions": "./dist/bin/deploy-interactions.js"
},
"directories": {
"lib": "src",
"test": "src/__tests__"
},
"files": [
"dist"
],
"dependencies": {
"@discordjs/rest": "^1.5.0",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"discord-api-types": "^0.37.35",
"dotenv": "^16.0.3",
"fast-deep-equal": "^3.1.3",
"table": "^6.8.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-angular": "^17.4.4",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"eslint": "^8.34.0",
"eslint-config-neon": "^0.1.40",
"eslint-formatter-pretty": "^4.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"engines": {
"node": ">=16.0.0"
}
}