smartmime/package.json
2024-05-29 14:14:46 +02:00

57 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartmime",
"version": "2.0.2",
"private": false,
"description": "A module for detecting MIME types with support for binary and text file distinctions.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.12"
},
"dependencies": {
"@types/mime-types": "^2.1.4",
"file-type": "^19.0.0",
"mime": "^4.0.3"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"type": "module",
"keywords": [
"MIME type detection",
"file type identification",
"node.js",
"binary files",
"text files",
"file encoding",
"mime types library"
],
"homepage": "https://code.foss.global/push.rocks/smartmime",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmime.git"
}
}