xiaohe-transition
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "xiaohe-transition", | ||
"type": "module", | ||
"version": "1.0.5", | ||
"packageManager": "pnpm@8.12.1", | ||
"version": "1.0.6", | ||
"description": "🏀 一个简单易用的贝塞尔曲线过渡动画工具", | ||
@@ -45,11 +44,13 @@ "author": "xiaohe0601 <HeDianGeng0601@outlook.com>", | ||
"scripts": { | ||
"dev": "unbuild --stub", | ||
"build": "unbuild", | ||
"babel": "npx babel dist --config-file ./src/.babelrc.json --out-dir lib --copy-files --keep-file-extension", | ||
"prepublishOnly": "nr build && nr babel", | ||
"release": "bumpp && npm publish", | ||
"start": "esno src/index.ts", | ||
"build": "nr build:step-1 && nr build:step-2", | ||
"build:step-1": "unbuild", | ||
"build:step-2": "npx babel dist --config-file ./src/.babelrc.json --out-dir lib --copy-files --keep-file-extension", | ||
"release": "nr build && bumpp && npm publish", | ||
"test": "vitest", | ||
"typecheck": "tsc --noEmit", | ||
"eslint": "eslint .", | ||
"test:ui": "vitest --ui", | ||
"test:coverage": "vitest run --coverage", | ||
"lint": "eslint src", | ||
"lint:fix": "eslint src --fix", | ||
"lint:type": "tsc --noEmit", | ||
"prepare": "simple-git-hooks" | ||
@@ -61,3 +62,3 @@ }, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.6.0", | ||
"@antfu/eslint-config": "^2.6.1", | ||
"@antfu/ni": "^0.21.12", | ||
@@ -68,3 +69,3 @@ "@antfu/utils": "^0.7.7", | ||
"@babel/preset-env": "^7.23.7", | ||
"@types/node": "^20.10.5", | ||
"@types/node": "^20.10.7", | ||
"bumpp": "^9.2.1", | ||
@@ -74,3 +75,2 @@ "eslint": "^8.56.0", | ||
"lint-staged": "^15.2.0", | ||
"pnpm": "^8.12.1", | ||
"rimraf": "^5.0.5", | ||
@@ -80,4 +80,4 @@ "simple-git-hooks": "^2.9.0", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.0.10", | ||
"vitest": "^1.1.0" | ||
"vite": "^5.0.11", | ||
"vitest": "^1.1.3" | ||
}, | ||
@@ -88,4 +88,4 @@ "simple-git-hooks": { | ||
"lint-staged": { | ||
"*": "eslint --fix" | ||
"*.{js,ts}": "eslint --fix" | ||
} | ||
} | ||
} |
88467
17