UNPKG

common-utils-y

Version:

my common utils lib

63 lines (62 loc) 1.57 kB
{ "name": "common-utils-y", "version": "0.0.22", "description": "my common utils lib", "main": "lib/index.umd.js", "module": "lib/index.mjs", "types": "types/index.d.ts", "typesVersions": { "*": { "lib": [ "types/index.d.ts" ], "lib-node": [ "types/index-node.d.ts" ] } }, "scripts": { "test": "jest", "publish:npm": "npm publish --access public", "build:with-browser": "vite build && npm run gen-node-types", "clear": "rimraf dist lib lib-node types", "update-version": "node ./scripts/update-version.mjs", "auto-publish": "npm run update-version && npm run build && npm run publish:npm", "build:without-browser": "cross-env VITE_WITHOUT=browser vite build", "gen-node-types": "node ./scripts/gen-node-types.mjs", "build": "npm run clear && npm run build:with-browser && npm run build:without-browser" }, "keywords": [ "escapeHTML", "toCamelStyle", "deepCopy", "debounce", "throttle", "formatDate", "enterFullscreen", "findPathInTree", "addResizeObserve" ], "author": "yinkeli", "license": "ISC", "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.13.5", "cross-env": "^7.0.3", "jest": "^29.7.0", "rimraf": "^6.0.1", "ts-jest": "^29.3.2", "typescript": "^5.8.3", "vite": "^6.1.0", "vite-plugin-dts": "^4.5.0" }, "repository": { "url": "https://gitee.com/yin-keli/common-utils-y" }, "files": [ "lib", "lib-node", "types", "jsdoc.png" ] }