ddmt-tool/package.json
ddmt caeca23cfa build: 更新项目版本号
- 将 package.json 中的版本号从 0.0.3 修改为 0.0.4
- 此次更新主要包括一些代码优化和小功能的添加,为下一个正式版本做准备
2025-02-21 13:00:12 +08:00

38 lines
989 B
JSON

{
"name": "ddmt-tool",
"version": "0.0.4",
"description": "A utility library that provides commonly used functions to simplify everyday development tasks. Whether it's string manipulation, array operations, or other frequent functionalities, `ddmt-tool` helps you work more efficiently.",
"main": "index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"types": "types/index.d.ts",
"scripts": {
"dev": "node index.js",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://git.ddmt.top/ddmt/ddmt-tool.git"
},
"keywords": [
"ddmt",
"tool",
"animate"
],
"author": "ddmt",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"rollup": "^4.34.8"
}
}