This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"name": "@eazyautodelete/commands-support",
"version": "1.4.26",
"description": "💾 This EazyAutodelete-Module implements the support of ApplicationCommands.",
"main": "src/CommandSupport.js",
"scripts": {
"format": "npx prettier --write .",
"build": "tsc",
"module:build": "tsc --target es2022",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "npm run module:build",
"postpublish": "git push --follow-tags origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EazyAutodelete/commands-support.git"
},
"keywords": [
"commandssupport",
"eazyautodelete"
],
"files": [
"src/*.js",
"src/**/*.js",
"src/*.ts",
"src/**/*.ts",
"src/*.txt",
"src/**/*.txt",
".npmrc",
"tsconfig.json"
],
"author": {
"name": "qreepex",
"email": "dev@qreepex.xyz",
"url": "https://qreepex.xyz"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/EazyAutodelete/commands-support/issues"
},
"homepage": "https://github.com/EazyAutodelete/commands-support#readme",
"dependencies": {
"@eazyautodelete/bot-utils": "^1.1.1",
"@eazyautodelete/core": "^4.1.39",
"eris": "github:eazyautodelete/eris",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"husky": "^8.0.1",
"prettier": "^2.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}