-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 929 Bytes
/
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": "@dofy/emojidb",
"version": "1.5.2",
"description": "emoji database cli",
"type": "module",
"bin": {
"emojidb": "bin/index.js"
},
"scripts": {
"build": "tsc",
"start": "node ./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dofy/emojidb.git"
},
"keywords": [
"emoji",
"database",
"unicode",
"cli"
],
"author": {
"name": " Seven Yu",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/dofy/emojidb/issues"
},
"homepage": "https://github.com/dofy/emojidb#readme",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.9.0",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.31",
"typescript": "5.2.2"
},
"dependencies": {
"@json2csv/node": "^7.0.6",
"axios": "^1.7.7",
"xml2js": "^0.6.2",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
}
}