CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json41 linesDownload Raw Back to is-binary-path
1{2	"name": "is-binary-path",3	"version": "2.1.0",4	"description": "Check if a file path is a binary file",5	"license": "MIT",6	"repository": "sindresorhus/is-binary-path",7	"author": {8		"name": "Sindre Sorhus",9		"email": "sindresorhus@gmail.com",10		"url": "sindresorhus.com"11	},12	"engines": {13		"node": ">=8"14	},15	"scripts": {16		"test": "xo && ava && tsd"17	},18	"files": [19		"index.js",20		"index.d.ts"21	],22	"keywords": [23		"binary",24		"extensions",25		"extension",26		"file",27		"path",28		"check",29		"detect",30		"is"31	],32	"dependencies": {33		"binary-extensions": "^2.0.0"34	},35	"devDependencies": {36		"ava": "^1.4.1",37		"tsd": "^0.7.2",38		"xo": "^0.24.0"39	}40}41