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

59 lines
1.3 KiB
JSON

{
"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"
}
}