chore: 更新静态资源文件并清理构建输出目录

删除旧的构建输出文件,包括图片资源和编译生成的JavaScript文件
添加新的图标资源文件到assets/img目录
更新package.json中的开发脚本配置
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-11-12 19:11:40 +08:00
parent 31a85830e5
commit edb7d1ae45
445 changed files with 2454 additions and 101179 deletions

View File

@@ -1,104 +0,0 @@
{
"name": "unhead",
"type": "module",
"version": "2.0.0-rc.10",
"description": "Full-stack <head> manager built for any framework.",
"author": {
"name": "Harlan Wilton",
"email": "harlan@harlanzw.com",
"url": "https://harlanzw.com/"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://unhead.unjs.io",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unhead.git",
"directory": "packages/unhead"
},
"bugs": {
"url": "https://github.com/unjs/unhead/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"default": "./dist/plugins.mjs"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.mjs"
},
"./client": {
"types": "./dist/client.d.ts",
"default": "./dist/client.mjs"
},
"./legacy": {
"types": "./dist/legacy.d.ts",
"default": "./dist/legacy.mjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"default": "./dist/utils.mjs"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.mjs"
},
"./scripts": {
"types": "./dist/scripts.d.ts",
"default": "./dist/scripts.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"optionalPlugins": {
"*": {
"plugins": [
"dist/plugins"
],
"server": [
"dist/server"
],
"client": [
"dist/client"
],
"legacy": [
"dist/legacy"
],
"types": [
"dist/types"
],
"utils": [
"dist/utils"
],
"scripts": [
"dist/scripts"
]
}
},
"files": [
"*.d.ts",
"dist"
],
"dependencies": {
"hookable": "^5.5.3"
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"test:attw": "attw --pack"
},
"__npminstall_done": true,
"_from": "unhead@2.0.0-rc.10",
"_resolved": "https://registry.npmmirror.com/unhead/-/unhead-2.0.0-rc.10.tgz"
}