-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.63 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.63 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
{
"name": "github-emojis",
"version": "1.2.3",
"description": "All GitHub's emojis in one place.",
"type": "module",
"author": {
"name": "Lucas Nørgård",
"email": "lucasnrgaard@gmail.com",
"url": "https://luxass.dev"
},
"packageManager": "pnpm@10.28.2",
"license": "MIT",
"homepage": "https://github.com/luxass/github-emojis",
"repository": {
"type": "git",
"url": "git+https://github.com/luxass/github-emojis.git"
},
"bugs": {
"url": "https://github.com/luxass/github-emojis/issues"
},
"keywords": [
"github",
"github emojis",
"emoji",
"emojis"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./utils": {
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"files": [
"dist",
"emoji-urls.json",
"emojis.json"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"update:emojis": "pnpx tsx ./scripts/update-emojis.ts"
},
"devDependencies": {
"@luxass/eslint-config": "6.0.1",
"@types/node": "20.19.9",
"eslint": "9.38.0",
"eslint-plugin-format": "1.0.2",
"publint": "0.3.15",
"tsdown": "0.15.11",
"typescript": "5.9.3",
"vitest": "4.0.4",
"zod": "4.1.12"
},
"pnpm": {
"overrides": {
"rolldown": "1.0.0-beta.45"
}
}
}