-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
88 lines (88 loc) · 1.84 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "emoj",
"version": "4.1.0",
"description": "Find relevant emoji from text on the command-line",
"license": "MIT",
"repository": "sindresorhus/emoj",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./distribution/cli.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "xo && ava"
},
"files": [
"distribution"
],
"keywords": [
"cli-app",
"cli",
"emoji",
"emojis",
"emoj",
"emoticon",
"search",
"find",
"matching",
"relevant",
"neural",
"networks"
],
"dependencies": {
"clipboardy": "^4.0.0",
"conf": "^12.0.0",
"emojilib": "^3.0.12",
"ink": "^5.0.0",
"ink-text-input": "^6.0.0",
"mem": "^9.0.2",
"meow": "^13.2.0",
"react": "^18.3.1",
"skin-tone": "^4.0.0",
"unicode-emoji-json": "^0.6.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"ava": "^6.1.3",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"tsimp": "^2.0.11",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/prop-types": "off",
"react/state-in-constructor": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/restrict-plus-operands": "off"
}
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--import=tsimp"
]
}
}