smartmime/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2020-03-04 14:21:44 +00:00
{
2023-07-10 08:16:37 +00:00
"name": "@push.rocks/smartmime",
2024-05-28 10:42:26 +00:00
"version": "2.0.2",
2020-03-04 14:21:44 +00:00
"private": false,
2024-04-14 15:59:06 +00:00
"description": "A module for detecting MIME types with support for binary and text file distinctions.",
2021-08-10 09:49:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2020-03-04 14:21:44 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-07-11 22:32:17 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2020-03-04 14:21:44 +00:00
},
"devDependencies": {
2024-05-20 22:57:24 +00:00
"@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"
2020-03-04 14:21:44 +00:00
},
"dependencies": {
2024-05-20 22:57:24 +00:00
"@types/mime-types": "^2.1.4",
"file-type": "^19.0.0",
"mime": "^4.0.3"
2020-03-04 14:21:44 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-08-10 09:49:39 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-03-04 14:21:44 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-08-10 09:49:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-07-11 22:32:17 +00:00
],
2024-04-14 15:59:06 +00:00
"type": "module",
"keywords": [
"MIME type detection",
"file type identification",
"node.js",
"binary files",
"text files",
"file encoding",
"mime types library"
2024-05-29 12:14:46 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartmime",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmime.git"
}
}