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 1
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "@eazyautodelete/core",
"version": "4.3.11",
"description": "🧰 Core Package used by the EazyAutodelete Discord Bot",
"main": "build/index.js",
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:typings": "eslint typings/index.d.ts",
"test": "npm run lint && npm run lint:typings && npm run test:typescript",
"test:typescript": "tsc",
"build": "tsc",
"prepublish": "tsc",
"postpublish": "git push --follow-tags origin main"
},
"files": [
"build/*.js",
"build/**/*.js",
"build/*.d.ts",
"build/**/*.d.ts",
".npmrc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eazyautodelete/core.git"
},
"typings": "build/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Ben Schiemann",
"url": "https://qreepex.xyz"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/eazyautodelete/core/issues"
},
"homepage": "https://github.com/eazyautodelete/core#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"standard-version": "^9.5.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@eazyautodelete/bot-utils": "^1.2.2",
"@eazyautodelete/db-client": "^2.8.1",
"@eazyautodelete/log-manager": "^1.1.0",
"@eazyautodelete/logger": "^1.0.6",
"@eazyautodelete/translator": "^1.6.0",
"axios": "^0.24.0",
"discord-api-types": "^0.37.21",
"discord-hybrid-sharding": "^1.7.5",
"eris": "github:EazyAutodelete/eris"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
}
}