@tomjs/node
Version:
A collection of functions for `node.js` projects
48 lines • 971 B
JSON
{
"name": "@tomjs/node",
"version": "2.2.3",
"description": "A collection of functions for `node.js` projects",
"keywords": [
"node",
"utils"
],
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/utils.git",
"directory": "packages/node"
},
"scripts": {
"build": "tsup && prettier --write ./dist",
"test": "vitest"
}
}