UNPKG

961 BJSONView Raw
1{
2 "name": "is-fullwidth-code-point",
3 "version": "5.0.0",
4 "description": "Check if the character represented by a given Unicode code point is fullwidth",
5 "license": "MIT",
6 "repository": "sindresorhus/is-fullwidth-code-point",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": {
15 "types": "./index.d.ts",
16 "default": "./index.js"
17 },
18 "engines": {
19 "node": ">=18"
20 },
21 "scripts": {
22 "test": "xo && ava && tsd"
23 },
24 "files": [
25 "index.js",
26 "index.d.ts"
27 ],
28 "keywords": [
29 "fullwidth",
30 "full-width",
31 "full",
32 "width",
33 "unicode",
34 "character",
35 "string",
36 "codepoint",
37 "code",
38 "point",
39 "is",
40 "detect",
41 "check",
42 "east-asian-width"
43 ],
44 "devDependencies": {
45 "ava": "^5.3.1",
46 "tsd": "^0.29.0",
47 "xo": "^0.56.0"
48 },
49 "dependencies": {
50 "get-east-asian-width": "^1.0.0"
51 }
52}