@mt-kit/utils
Version:
60 lines • 1.54 kB
JSON
{
"name": "@mt-kit/utils",
"version": "1.0.1",
"description": "一个常用的工具库",
"keywords": [
"micro",
"utils",
"micro-utils",
"debounce",
"throttle",
"clone",
"cloneDeep",
"Cookie",
"draggable",
"LocalStorageHelper",
"localStorage"
],
"homepage": "https://github.com/Not-have/micro-tools/tree/main/packages-utils",
"bugs": {
"url": "https://github.com/Not-have/micro-tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Not-have/micro-tools/tree/main/packages-utils"
},
"license": "ISC",
"author": "Li Yong",
"main": "./lib/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./lib/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@types/node": "^22.14.0",
"fork-ts-checker-webpack-plugin": "^9.0.3",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build:webpack": "rm -fr lib && webpack --config webpack.config.js",
"build:tsc": "rm -fr dist && tsc",
"build": "pnpm run build:webpack && pnpm run build:tsc",
"dev": "tsc --watch & webpack --watch",
"clear": "rm -fr node_modules && rm -fr dist && rm -fr lib"
}
}