smartmime/package.json

53 lines
1.2 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",
2023-07-11 22:32:18 +00:00
"version": "1.0.6",
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": {
2023-07-11 22:32:17 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.4.1",
2021-08-10 09:49:39 +00:00
"tslint": "^6.1.3",
2023-07-11 22:32:17 +00:00
"tslint-config-prettier": "^1.18.0"
2020-03-04 14:21:44 +00:00
},
"dependencies": {
2023-07-11 22:32:17 +00:00
"@types/mime-types": "^2.1.1",
"mime-types": "^2.1.35"
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"
]
}