@kimo-emoji/core 1.0.0

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/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@kimo-emoji/core",
3
+ "version": "1.0.0",
4
+ "description": "Framework-independent SVG emoji engine, metadata registry, and vanilla JavaScript DOM renderer.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": ["dist"],
16
+ "scripts": {
17
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean"
18
+ },
19
+ "keywords": [
20
+ "emoji",
21
+ "svg",
22
+ "icons",
23
+ "ui",
24
+ "vanilla-js",
25
+ "tree-shaking",
26
+ "accessible"
27
+ ],
28
+ "author": "Kimo Emoji Open Source",
29
+ "license": "MIT",
30
+ "publishConfig": {
31
+ "access": "public"
32
+ }
33
+ }