-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "emoji-db",
"version": "1.0.0",
"main": "emoji-db.json",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/meyer/emoji-db.git"
},
"keywords": [
"emoji",
"database"
],
"author": "meyer <github.com@meyer.fm>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/meyer/emoji-db/issues"
},
"homepage": "https://github.com/meyer/emoji-db",
"scripts": {
"start": "pnpm extract-images && pnpm generate-db",
"check-emoji-keys": "tsx src/scripts/checkEmojiKeys.ts",
"ci": "concurrently -c auto pnpm:ci:* && pnpm generate-db",
"ci:data": "pnpm fetch-data && pnpm convert",
"ci:font": "pnpm copy-latest && pnpm extract-images",
"fetch-data": "./scripts/fetchData.sh",
"convert": "concurrently -c auto pnpm:convert:*",
"convert:annotations": "tsx src/scripts/annotationsToJson.ts",
"convert:sequences": "tsx src/scripts/processEmojiSequences.ts",
"convert:test-data": "tsx src/scripts/testDataToJson.ts",
"copy-latest": "tsx src/scripts/copyLatest.ts",
"extract-images": "rm -rf images && tsx src/scripts/extractEmojiImages.ts latest",
"format": "biome format --write .",
"generate-db": "tsx src/scripts/generateDb.ts latest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^18.0.0",
"cheerio": "^1.0.0",
"json-stable-stringify": "^1.1.1",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"yaml": "^2.6.0"
},
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"concurrently": "^9.2.1"
}
}