CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json47 linesDownload Raw Back to iconv-lite
1{2    "name": "iconv-lite",3    "description": "Convert character encodings in pure javascript.",4    "version": "0.4.24",5    "license": "MIT",6    "keywords": [7        "iconv",8        "convert",9        "charset",10        "icu"11    ],12    "author": "Alexander Shtuchkin <ashtuchkin@gmail.com>",13    "main": "./lib/index.js",14    "typings": "./lib/index.d.ts",15    "homepage": "https://github.com/ashtuchkin/iconv-lite",16    "bugs": "https://github.com/ashtuchkin/iconv-lite/issues",17    "repository": {18        "type": "git",19        "url": "git://github.com/ashtuchkin/iconv-lite.git"20    },21    "engines": {22        "node": ">=0.10.0"23    },24    "scripts": {25        "coverage": "istanbul cover _mocha -- --grep .",26        "coverage-open": "open coverage/lcov-report/index.html",27        "test": "mocha --reporter spec --grep ."28    },29    "browser": {30        "./lib/extend-node": false,31        "./lib/streams": false32    },33    "devDependencies": {34        "mocha": "^3.1.0",35        "request": "~2.87.0",36        "unorm": "*",37        "errto": "*",38        "async": "*",39        "istanbul": "*",40        "semver": "*",41        "iconv": "*"42    },43    "dependencies": {44        "safer-buffer": ">= 2.1.2 < 3"45    }46}47