@thi.ng/emoji 0.1.0 → 0.1.2
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/CHANGELOG.md +1 -1
- package/package.json +8 -8
- package/emojis.d.ts +0 -14
- package/emojis.js +0 -1918
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/emoji",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Bi-directional lookup tables mapping emoji names & their characters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "yarn clean && tsc --declaration",
|
|
28
|
-
"clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
|
|
28
|
+
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
|
|
29
29
|
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
30
30
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
31
31
|
"doc:readme": "yarn doc:stats && tools:readme",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@microsoft/api-extractor": "^7.34.
|
|
38
|
-
"@thi.ng/testament": "^0.3.
|
|
39
|
-
"rimraf": "^4.1
|
|
37
|
+
"@microsoft/api-extractor": "^7.34.4",
|
|
38
|
+
"@thi.ng/testament": "^0.3.14",
|
|
39
|
+
"rimraf": "^4.4.1",
|
|
40
40
|
"tools": "^0.0.1",
|
|
41
|
-
"typedoc": "^0.23.
|
|
42
|
-
"typescript": "^
|
|
41
|
+
"typedoc": "^0.23.28",
|
|
42
|
+
"typescript": "^5.0.2"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
45
45
|
"bidirectional",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"status": "alpha",
|
|
81
81
|
"year": 2023
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
|
|
84
84
|
}
|
package/emojis.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Inverse mapping of {@link EMOJI_NAMES}, i.e. here the emoji names are keys
|
|
3
|
-
* and the actual emoji characters are values in this object.
|
|
4
|
-
*
|
|
5
|
-
* @remarks
|
|
6
|
-
* Source:
|
|
7
|
-
* https://raw.githubusercontent.com/omnidan/node_emoji/master/lib/emoji.json
|
|
8
|
-
*
|
|
9
|
-
* Changes:
|
|
10
|
-
* - sorted alphabetically
|
|
11
|
-
* - replaced all hyphens with underscores
|
|
12
|
-
*/
|
|
13
|
-
export declare const EMOJIS: Record<string, string>;
|
|
14
|
-
//# sourceMappingURL=emojis.d.ts.map
|