- manifest/manifest-beta/package.json → id media-db-sync, v0.1.0 - pluginName const → media-db-sync - tsconfig: baseUrl (bun test needs it for packages/* paths) + ignoreDeprecations 6.0 - upstream tests were broken on clean checkout (module resolution) → 31/31 pass now
43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "media-db-sync",
|
|
"version": "0.1.0",
|
|
"description": "A plugin that can query multiple APIs for movies, series, anime, manga, books, comics, games, music and wiki articles, and import them into your vault.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "vite build --watch --mode development",
|
|
"build": "bun run tsc && vite build --mode production",
|
|
"typecheck": "tsc -p tsconfig.json -noEmit -skipLibCheck && tsc -p tests/tsconfig.json -noEmit -skipLibCheck",
|
|
"test": "bun test --preload ./tests/setup.ts",
|
|
"test:log": "LOG_TESTS=true bun test --preload ./tests/setup.ts",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint --max-warnings=0 --no-warn-ignored packages/obsidian/src/**",
|
|
"lint:fix": "eslint --max-warnings=0 --fix --no-warn-ignored packages/obsidian/src/**",
|
|
"check": "bun run format:check && bun run typecheck && bun run lint && bun run test:log",
|
|
"check:fix": "bun run format && bun run typecheck && bun run lint:fix && bun run test:log",
|
|
"release": "lemons-automation release"
|
|
},
|
|
"keywords": [],
|
|
"author": "Moritz Jung",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@happy-dom/global-registrator": "^20.10.4",
|
|
"@lemons_dev/lemons-obsidian-plugin-automation": "^0.1.4",
|
|
"@types/bun": "^1.3.14",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-no-relative-import-paths": "^1.6.1",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"eslint-plugin-only-warn": "^1.2.1",
|
|
"iso-639-2": "^3.0.2",
|
|
"obsidian": "latest",
|
|
"openapi-fetch": "^0.17.0",
|
|
"openapi-typescript": "^7.13.0",
|
|
"prettier": "^3.8.4",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "8.60.1",
|
|
"vite": "^8.0.16",
|
|
"vite-plugin-banner": "^0.8.1",
|
|
"vite-plugin-static-copy": "^4.1.1"
|
|
}
|
|
}
|