-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.66 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.66 KB
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
{
"name": "universal-emoji-parser",
"version": "2.1.2",
"description": "This tool allow parse unicode and emoji codes to html images using emojilib && Twemoji CDN",
"keywords": [
"emoji",
"parser",
"transform",
"slack",
"twitter",
"github",
"emoji-parser",
"emoji parser",
"unicode",
"emoji unicode",
"shortcode",
"emoji shortcode",
"slack",
"discord",
"google-chat",
"google chat",
"microsoft-teams",
"microsoft teams"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier -c --ignore-path .gitignore '**/*.{css,html,js,ts,json,md,yaml,yml}' '!package.json'",
"prettier:fix": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,ts,json,md,yaml,yml}' '!package.json'",
"test": "tsx ./node_modules/mocha/bin/mocha.js 'test/**/*.ts' --timeout 25000 --colors",
"test:watch": "tsx ./node_modules/mocha/bin/mocha.js -w --watch-extensions ts --watch-files src,test 'test/**/*.ts' --timeout 25000 --colors",
"release": "npm version patch -m \"[🤖 DailyBot] New release to v%s launched 🚀\"",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "webpack --mode production --progress",
"build:dev": "webpack --mode development --progress",
"build:tsc": "tsc --build tsconfig.build.json",
"ncu:check": "ncu",
"ncu:upgrade": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DailyBotHQ/universal-emoji-parser.git"
},
"author": "DailyBot <developers@dailybot.com> (https://dailybot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DailyBotHQ/universal-emoji-parser/issues",
"email": "developers@dailybot.com"
},
"homepage": "https://github.com/DailyBotHQ/universal-emoji-parser#readme",
"dependencies": {
"@twemoji/parser": "17.0.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/chai": "5.2.3",
"@types/mocha": "10.0.10",
"@types/node": "25.6.0",
"chai": "6.2.2",
"clean-webpack-plugin": "4.0.0",
"emojilib": "4.0.3",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-webpack-plugin": "6.0.0",
"mocha": "11.7.5",
"nodemon": "3.1.14",
"npm-check-updates": "22.1.0",
"prettier": "3.8.3",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"tsx": "4.21.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1",
"unicode-emoji-json": "0.9.0",
"webpack": "5.106.2",
"webpack-cli": "7.0.2"
},
"engines": {
"node": ">=20.19.0"
}
}