mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"name": "codex-panel",
|
|
"version": "4.5.1",
|
|
"description": "Codex in your Obsidian sidebar.",
|
|
"main": "main.js",
|
|
"author": "murashit",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/murashit/codex-panel.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/murashit/codex-panel/issues"
|
|
},
|
|
"homepage": "https://github.com/murashit/codex-panel#readme",
|
|
"engines": {
|
|
"node": ">=26"
|
|
},
|
|
"scripts": {
|
|
"api:baseline": "node scripts/api-baseline.mjs",
|
|
"build": "node esbuild.config.mjs",
|
|
"build:styles": "node scripts/build-styles.mjs",
|
|
"check": "node --run build && concurrently --group --pad-prefix 'node:check:*'",
|
|
"check:biome": "biome check --diagnostic-level=warn --error-on-warnings",
|
|
"check:css-usage": "node scripts/check-css-usage.mjs",
|
|
"check:eslint": "eslint src manifest.json LICENSE --max-warnings=0",
|
|
"check:test": "node --run test",
|
|
"check:typecheck": "node --run typecheck",
|
|
"check:unused": "knip --no-progress",
|
|
"fix": "biome check --fix --skip=plugin --diagnostic-level=warn --error-on-warnings && knip --fix --no-progress",
|
|
"generate:app-server-types": "node scripts/generate-app-server-types.mjs",
|
|
"release:check": "node scripts/release/check.mjs",
|
|
"release:preflight": "node scripts/release/preflight.mjs",
|
|
"release:prepare": "node scripts/release/prepare.mjs",
|
|
"test": "vitest run --pool threads --maxWorkers 6",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit --incremental --tsBuildInfoFile node_modules/.cache/typescript/tsconfig.tsbuildinfo"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.5.1",
|
|
"@types/node": "^26.0.1",
|
|
"concurrently": "^10.0.3",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^10.5.0",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"jsdom": "^29.1.1",
|
|
"knip": "^6.20.0",
|
|
"obsidian": "~1.12.3",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.62.0",
|
|
"vitest": "^4.1.9"
|
|
},
|
|
"dependencies": {
|
|
"@preact/signals": "^2.9.2",
|
|
"@tanstack/query-core": "^5.101.1",
|
|
"defuddle": "^0.19.1",
|
|
"micromark": "^4.0.2",
|
|
"preact": "^10.29.2"
|
|
}
|
|
}
|