You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
{ |
|
"name": "@antfu/utils", |
|
"type": "module", |
|
"version": "0.7.10", |
|
"packageManager": "pnpm@9.1.0", |
|
"description": "Opinionated collection of common JavaScript / TypeScript utils by @antfu", |
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>", |
|
"license": "MIT", |
|
"funding": "https://github.com/sponsors/antfu", |
|
"homepage": "https://github.com/antfu/utils#readme", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/antfu/utils.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/antfu/utils/issues" |
|
}, |
|
"keywords": [ |
|
"utils" |
|
], |
|
"sideEffects": false, |
|
"exports": { |
|
".": { |
|
"import": "./dist/index.mjs", |
|
"require": "./dist/index.cjs" |
|
} |
|
}, |
|
"main": "dist/index.cjs", |
|
"module": "dist/index.mjs", |
|
"types": "dist/index.d.ts", |
|
"files": [ |
|
"dist" |
|
], |
|
"scripts": { |
|
"build": "rollup -c", |
|
"dev": "nr build --watch", |
|
"lint": "eslint .", |
|
"lint-fix": "nr lint --fix", |
|
"prepublishOnly": "npm run build", |
|
"release": "bumpp --commit --push --tag && npm publish", |
|
"start": "esno src/index.ts", |
|
"typecheck": "tsc --noEmit", |
|
"test": "vitest" |
|
}, |
|
"devDependencies": { |
|
"@antfu/eslint-config": "^2.16.3", |
|
"@antfu/ni": "^0.21.12", |
|
"@rollup/plugin-alias": "^5.1.0", |
|
"@rollup/plugin-commonjs": "^25.0.7", |
|
"@rollup/plugin-json": "^6.1.0", |
|
"@rollup/plugin-node-resolve": "^15.2.3", |
|
"@types/node": "^20.12.10", |
|
"@types/throttle-debounce": "^5.0.2", |
|
"bumpp": "^9.4.1", |
|
"eslint": "npm:eslint-ts-patch@8.55.0-1", |
|
"eslint-ts-patch": "8.55.0-1", |
|
"esno": "^4.7.0", |
|
"p-limit": "^5.0.0", |
|
"rollup": "^4.17.2", |
|
"rollup-plugin-dts": "^6.1.0", |
|
"rollup-plugin-esbuild": "^6.1.1", |
|
"throttle-debounce": "5.0.0", |
|
"typescript": "^5.4.5", |
|
"vite": "^5.2.11", |
|
"vitest": "^1.6.0" |
|
} |
|
}
|
|
|