-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.67 KB
/
package.json
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
{
"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 <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/meyer/emoji-db/issues"
},
"homepage": "https://github.com/meyer/emoji-db",
"scripts": {
"start": "yarn extract-images && yarn generate-db",
"check-emoji-keys": "node --loader ts-node/esm src/scripts/checkEmojiKeys.ts",
"ci": "yarn fetch-data && yarn convert && yarn copy-latest && yarn extract-images && yarn generate-db",
"fetch-data": "./scripts/fetchData.sh",
"convert": "yarn convert-annotations && yarn convert-sequences && yarn convert-test-data",
"convert-annotations": "node --loader ts-node/esm src/scripts/annotationsToJson.ts",
"convert-sequences": "node --loader ts-node/esm src/scripts/processEmojiSequences.ts",
"convert-test-data": "node --loader ts-node/esm src/scripts/testDataToJson.ts",
"copy-latest": "node --loader ts-node/esm src/scripts/copyLatest.ts",
"extract-images": "rm -rf images && node --loader ts-node/esm src/scripts/extractEmojiImages.ts latest",
"format": "biome format --write .",
"generate-db": "node --loader ts-node/esm src/scripts/generateDb.ts latest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@types/json-stable-stringify": "^1.1.0",
"@types/node": "^18.0.0",
"cheerio": "^1.0.0",
"json-stable-stringify": "^1.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"yaml": "^2.6.0"
}
}