basant307/AI_Governance_Project
045
1{2 "name": "get-east-asian-width",3 "version": "1.5.0",4 "description": "Determine the East Asian Width of a Unicode character",5 "license": "MIT",6 "repository": "sindresorhus/get-east-asian-width",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 "sideEffects": false,19 "engines": {20 "node": ">=18"21 },22 "scripts": {23 "test": "xo && ava && tsc index.d.ts",24 "build": "node scripts/build.js",25 "prepublish": "npm run build"26 },27 "files": [28 "index.js",29 "index.d.ts",30 "lookup.js",31 "lookup-data.js",32 "utilities.js"33 ],34 "keywords": [35 "unicode",36 "east-asian-width",37 "eastasianwidth",38 "character",39 "string",40 "width",41 "text",42 "layout",43 "alignment",44 "fullwidth",45 "halfwidth",46 "ambiguous",47 "narrow",48 "wide",49 "neutral",50 "typography",51 "japanese",52 "chinese",53 "korean",54 "codepoint",55 "text-processing",56 "i18n",57 "l10n"58 ],59 "devDependencies": {60 "ava": "^5.3.1",61 "outdent": "^0.8.0",62 "simplify-ranges": "^0.1.0",63 "typescript": "^5.2.2",64 "xo": "^0.56.0"65 },66 "xo": {67 "ignores": [68 "lookup-data.js"69 ]70 }71}72 