-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.88 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": "@mkody/twitch-emoticons",
"version": "2.8.9",
"description": "Gets Twitch, BTTV, FFZ and 7TV emotes as well as parsing text to emotes!",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"keywords": [
"7tv",
"bettertwitchtv",
"bttv",
"emotes",
"emoticons",
"ffz",
"frankerfacez",
"parse",
"seventv",
"twitch-api",
"twitch"
],
"author": "MKody <gh@kdy.ch> (André Fernandes)",
"contributors": [
"1Computer",
"Killusions",
"MKody",
"Tzahi12345"
],
"license": "MIT",
"dependencies": {
"@twurple/api": "^7.2.0",
"@twurple/auth": "^7.2.0",
"axios": "^1.7.7"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"docdash": "^2.0.2",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-plugin-jsdoc": "^50.4.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4"
},
"scripts": {
"all": "pnpm run lint && pnpm run test && pnpm run build && pnpm run docs",
"build": "esbuild ./src/index.js --bundle --minify --keep-names --sourcemap --format=esm --outfile=./dist/TwitchEmoticons.min.js",
"docs": "jsdoc --configure .jsdoc.json --verbose",
"lint": "eslint ./src ./test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkody/twitch-emoticons.git"
},
"bugs": {
"url": "https://github.com/mkody/twitch-emoticons/issues"
},
"homepage": "https://github.com/mkody/twitch-emoticons",
"directories": {
"doc": "docs",
"test": "test"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.12.2"
}