emoji-kitchen-data 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +105 -0
- package/data-by-emoji.json +89513 -0
- package/data.json +91275 -0
- package/index.d.ts +20 -0
- package/package.json +33 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
namespace EmojiKitchen {
|
|
2
|
+
type Data = {
|
|
3
|
+
emojis: { emoji: string; id: number }[];
|
|
4
|
+
combinations: {
|
|
5
|
+
id: number;
|
|
6
|
+
emojiIds: number[];
|
|
7
|
+
}[];
|
|
8
|
+
categories: {
|
|
9
|
+
name: string;
|
|
10
|
+
startEmojiId: number;
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
type DataByEmoji = {
|
|
15
|
+
[emoji: string]: {
|
|
16
|
+
category: string;
|
|
17
|
+
combinations: string[];
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "emoji-kitchen-data",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Emoji Kitchen data",
|
|
5
|
+
"main": "data.json",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"author": "Jakub Grzywacz <kontakt@jakubgrzywacz.pl>",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"files": [
|
|
11
|
+
"data.json",
|
|
12
|
+
"data-by-emoji.json",
|
|
13
|
+
"index.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"download": "node scripts/download.js",
|
|
17
|
+
"convert": "node scripts/convert.js",
|
|
18
|
+
"process": "node scripts/process.js",
|
|
19
|
+
"update": "yarn run download && yarn run convert && yarn run process"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://jakubgrzywacz.pl/jakex7/emoji-kitchen-data.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://jakubgrzywacz.pl/jakex7/emoji-kitchen-data/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://jakubgrzywacz.pl/jakex7/emoji-kitchen-data#readme",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"dotenv": "^17.2.3",
|
|
31
|
+
"protobufjs": "^8.0.0"
|
|
32
|
+
}
|
|
33
|
+
}
|