This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.61 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@tmware/status-rotate",
"version": "1.2.10",
"description": "Discord Bot Status rotation.",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./index.esm.mjs"
},
"engines": {
"node": ">=16.6.1",
"yarn": ">=1.22.4 <2"
},
"files": [
"dist",
"index.esm.mjs",
"src",
"typings"
],
"scripts": {
"build": "yarn run clean && tsc -p ./",
"clean": "rimraf dist",
"test": "yarn run lint src/",
"lint": "eslint --cache --report-unused-disable-directives --ext .js,.ts --ignore-path .gitignore --ignore-path .eslintignore",
"lint:fix": "yarn run lint src/ --fix",
"preversion": "yarn run build && yarn test",
"prepublishOnly": "yarn run build && yarn test",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/TMWare/status-rotate.git"
},
"author": "TMUniversal <me@tmuniversal.eu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TMWare/status-rotate/issues"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/bePatron?u=19830329"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/tmuniversal"
},
{
"type": "github sponsors",
"url": "https://github.com/sponsors/TMUniversal"
}
],
"homepage": "https://github.com/TMWare/status-rotate#readme",
"peerDependencies": {
"discord.js": ">= 13.0.0"
},
"peerDependenciesMeta": {
"discord.js": {
"optional": false
}
},
"dependencies": {
"@tmware/jitsuyo": "^1.6.7",
"@tmware/variable-parser": "^1.2.2",
"axios": "0.26.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@tmuniversal/ts": "^1.2.1",
"@tmware/eslint-config": "^1.1.3",
"@tmware/eslint-config-typescript": "^1.0.8",
"@tmware/semantic-release-npm-github-publish": "^1.4.4",
"@types/node": "^16.7.10",
"@types/ws": "^7.4.7",
"cz-conventional-changelog": "3.3.0",
"discord.js": "^13.1.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"typescript": "^4.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false
}
},
"lint-staged": {
"*.ts": "eslint"
},
"keywords": [
"discord",
"discord.js",
"presence",
"rotate",
"rotator",
"status"
]
}