emoji-styles-data 0.1.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,56 @@
1
+ {
2
+ "name": "emoji-styles-data",
3
+ "version": "0.1.0",
4
+ "description": "Versioned Unicode RGI emoji metadata for Emoji Styles",
5
+ "sideEffects": false,
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "LICENSE"
19
+ ],
20
+ "engines": {
21
+ "node": ">=18.17"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "provenance": true
26
+ },
27
+ "devDependencies": {
28
+ "tsup": "^8.0.0",
29
+ "typescript": "^5.5.0",
30
+ "vitest": "^2.1.9",
31
+ "emoji-styles-test-fixtures": "0.1.0"
32
+ },
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/Blancochuy/emoji-styles.git",
36
+ "directory": "packages/data"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/Blancochuy/emoji-styles/issues"
40
+ },
41
+ "homepage": "https://emoji-styles.space",
42
+ "keywords": [
43
+ "emoji",
44
+ "unicode",
45
+ "cldr",
46
+ "rgi",
47
+ "metadata"
48
+ ],
49
+ "license": "Unicode-3.0",
50
+ "scripts": {
51
+ "build": "tsup src/index.ts --format esm --dts --clean",
52
+ "test": "vitest run",
53
+ "typecheck": "tsc --noEmit",
54
+ "dev": "tsup src/index.ts --format esm --dts --watch"
55
+ }
56
+ }