加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
bluefox 提交于 2024-06-20 18:09 . update
{
"name": "universal-event-bus",
"version": "1.0.2",
"description": "统一事件处理",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"browser": "./lib/umd/index.umd.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"scripts": {
"lib": " rimraf ./lib && rollup -c ./build/rollup.config.js",
"build": "rimraf ./dist && tsc -p tsconfig.json",
"test": "jest --no-cache && exit 0",
"doc": "typedoc --options typedoc.json && npm run doc:gh-fix",
"doc:gh-fix": "touch docs/.nojekyll"
},
"author": "supj",
"license": "ISC",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"dts": "^0.1.1",
"jest": "^27.4.3",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.0",
"tslib": "^2.3.1",
"typedoc": "^0.19.2",
"typedoc-neo-theme": "^1.0.10",
"typescript": "^4.0.5",
"yargs": "^17.3.0"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化