-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "@mkody/twitch-emoticons",
"version": "2.8.6",
"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 <[email protected]> (André Fernandes)",
"contributors": [
"1Computer",
"Killusions",
"MKody",
"Tzahi12345"
],
"license": "MIT",
"dependencies": {
"@twurple/api": "^7.0.10",
"@twurple/auth": "^7.0.10",
"axios": "^1.6.7"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"docdash": "^2.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
},
"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": ">=8"
},
"packageManager": "[email protected]"
}