mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-06-22 00:19:54 +08:00
fork(fix): Clone AMLL 并修复 BUG
- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork) - 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
This commit is contained in:
58
amll-local/packages/ttml/package.json
Normal file
58
amll-local/packages/ttml/package.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"name": "@applemusic-like-lyrics/ttml",
|
||||
"version": "1.0.1",
|
||||
"description": "AMLL 的 TTML 歌词文件序列化和反序列化模块",
|
||||
"repository": {
|
||||
"url": "https://github.com/amll-dev/applemusic-like-lyrics.git",
|
||||
"directory": "packages/ttml",
|
||||
"type": "git"
|
||||
},
|
||||
"license": "AGPL-3.0-only",
|
||||
"nx": {
|
||||
"tags": [
|
||||
"library"
|
||||
],
|
||||
"targets": {
|
||||
"nx-release-publish": {
|
||||
"executor": "@nx/js:release-publish",
|
||||
"dependsOn": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"main": "./dist/amll-ttml.cjs",
|
||||
"module": "./dist/amll-ttml.mjs",
|
||||
"types": "./dist/amll-ttml.d.mts",
|
||||
"exports": {
|
||||
"import": {
|
||||
"types": "./dist/amll-ttml.d.mts",
|
||||
"default": "./dist/amll-ttml.mjs"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/amll-ttml.d.cts",
|
||||
"default": "./dist/amll-ttml.cjs"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build:docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
|
||||
"typecheck": "tsgo -b",
|
||||
"build-only": "tsdown",
|
||||
"build": "run-p typecheck \"build-only {@}\" --",
|
||||
"build:dev": "tsdown",
|
||||
"fmt": "biome format --write ./src",
|
||||
"test": "vitest test",
|
||||
"test:watch": "vitest test --watch",
|
||||
"test:coverage": "vitest test --coverage"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^2.4.8",
|
||||
"@types/node": "^25.5.2",
|
||||
"@xmldom/xmldom": "^0.9.10",
|
||||
"tsdown": "^0.22.0",
|
||||
"typedoc": "^0.28.18",
|
||||
"vitest": "^4.1.6"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user