@tech_query/node-toolkit
Version:
Toolkit for Node.JS packages
74 lines (73 loc) • 1.93 kB
JSON
{
"name": "@tech_query/node-toolkit",
"version": "2.0.0-beta.3",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "Toolkit for Node.JS packages",
"keywords": [
"toolkit",
"toolbox",
"utility",
"node",
"package",
"library",
"module"
],
"homepage": "https://tech-query.me/node-toolkit/",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/node-toolkit.git"
},
"bugs": {
"url": "https://github.com/TechQuery/node-toolkit/issues"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"source": "source/index.ts",
"types": "dist/index.d.ts",
"dependencies": {
"file-type": "^16.5.4",
"fs-extra": "^11.3.2",
"mime": "^3.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/mime": "^3.0.4",
"@types/node": "^22.18.13",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"open-cli": "^8.0.0",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "~5.9.3"
},
"lint-staged": {
"*.{json,yml,ts}": "biome check --write"
},
"jest": {
"preset": "ts-jest"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && jest",
"build": "rm -rf dist/ docs/ && tsc && typedoc source/",
"prepublishOnly": "npm test && npm run build",
"start": "typedoc && open-cli docs/index.html"
},
"test": {
"env": {
"development": {
"example": {
"^test$": "example"
}
}
}
}
}