50 lines
1.8 KiB
JSON
50 lines
1.8 KiB
JSON
{
|
|
"name": "obsidian-media-db-plugin",
|
|
"version": "0.8.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": "bun run automation/build/esbuild.dev.config.ts",
|
|
"build": "bun run tsc && bun run automation/build/esbuild.config.ts",
|
|
"tsc": "tsc -noEmit -skipLibCheck",
|
|
"test": "bun test",
|
|
"test:log": "LOG_TESTS=true bun test",
|
|
"format": "prettier --write --plugin prettier-plugin-svelte .",
|
|
"format:check": "prettier --check --plugin prettier-plugin-svelte .",
|
|
"lint": "eslint --max-warnings=0 src/**",
|
|
"lint:fix": "eslint --max-warnings=0 --fix src/**",
|
|
"svelte-check": "svelte-check --compiler-warnings \"unused-export-let:ignore\"",
|
|
"check": "bun run format:check && bun run tsc && bun run lint && bun run svelte-check",
|
|
"check:fix": "bun run format && bun run tsc && bun run lint:fix && bun run svelte-check",
|
|
"release": "bun run automation/release.ts",
|
|
"stats": "bun run automation/stats.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Moritz Jung",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@happy-dom/global-registrator": "^18.0.1",
|
|
"@lemons_dev/parsinom": "^0.0.12",
|
|
"@popperjs/core": "^2.11.8",
|
|
"@types/bun": "^1.2.19",
|
|
"builtin-modules": "^5.0.0",
|
|
"esbuild": "^0.25.8",
|
|
"esbuild-plugin-copy-watch": "^2.3.1",
|
|
"esbuild-svelte": "^0.9.3",
|
|
"eslint": "^9.32.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-only-warn": "^1.1.0",
|
|
"obsidian": "latest",
|
|
"openapi-fetch": "^0.14.0",
|
|
"openapi-typescript": "^7.8.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-svelte": "^3.4.0",
|
|
"string-argv": "^0.3.2",
|
|
"svelte": "^5.38.0",
|
|
"svelte-check": "^4.3.1",
|
|
"svelte-preprocess": "^6.0.3",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.39.0"
|
|
}
|
|
}
|