Files
QZMusic_PC/amll-local/packages/vue/package.json
lqtmcstudio 72f4510dc8 fork(fix): Clone AMLL 并修复 BUG
- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork)
- 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
2026-06-07 00:02:14 +08:00

72 lines
1.6 KiB
JSON

{
"name": "@applemusic-like-lyrics/vue",
"version": "0.5.1",
"description": "AMLL 组件库的 Vue 绑定",
"repository": {
"url": "https://github.com/amll-dev/applemusic-like-lyrics.git",
"directory": "packages/vue",
"type": "git"
},
"type": "module",
"license": "AGPL-3.0-only",
"nx": {
"tags": [
"library"
],
"targets": {
"nx-release-publish": {
"executor": "@nx/js:release-publish",
"dependsOn": []
}
}
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsgo -b",
"build-only": "tsdown",
"build": "run-p typecheck \"build-only {@}\" --",
"build:dev": "tsdown",
"fmt": "biome format --write ./src",
"dev": "nx run @applemusic-like-lyrics/playground-vue:dev"
},
"main": "./dist/amll-vue.cjs",
"module": "./dist/amll-vue.mjs",
"typings": "./dist/amll-vue.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/amll-vue.d.mts",
"default": "./dist/amll-vue.mjs"
},
"require": {
"types": "./dist/amll-vue.d.cts",
"default": "./dist/amll-vue.cjs"
}
}
},
"dependencies": {
"@applemusic-like-lyrics/core": "file:../core"
},
"peerDependencies": {
"vue": "*"
},
"devDependencies": {
"@applemusic-like-lyrics/core": "file:../core",
"@biomejs/biome": "^2.4.8",
"@pixi/app": "^7.4.3",
"@pixi/core": "^7.4.3",
"@pixi/display": "^7.4.3",
"@pixi/filter-blur": "^7.4.3",
"@pixi/filter-color-matrix": "^7.4.3",
"@pixi/sprite": "^7.4.3",
"@rolldown/plugin-babel": "^0.2.3",
"@vue/babel-plugin-jsx": "^2.0.1",
"tsdown": "^0.22.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.11.0",
"vue": "^3.5.30"
}
}