murashit_codex-panel/package.json
2026-06-13 21:55:13 +09:00

68 lines
2.7 KiB
JSON

{
"name": "codex-panel",
"version": "3.2.3",
"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",
"scripts": {
"build:styles": "node scripts/build-styles.mjs",
"build:styles:check": "node scripts/build-styles.mjs --check",
"build": "node esbuild.config.mjs",
"format": "node scripts/format.mjs",
"format:check": "node scripts/format.mjs --check --cache",
"format:check:ci": "node scripts/format.mjs --check",
"api:baseline": "node scripts/api-baseline.mjs",
"api:baseline:check": "node scripts/api-baseline.mjs --check",
"generate:app-server-types": "node scripts/generate-app-server-types.mjs",
"lint": "node scripts/run-parallel.mjs lint:ts lint:css",
"lint:css": "stylelint \"src/**/*.css\" --max-warnings=0",
"lint:css:usage": "node scripts/check-css-usage.mjs",
"lint:css:usage:check": "node scripts/check-css-usage.mjs --fail-on-candidates",
"lint:deps": "node scripts/check-import-cycles.mjs",
"lint:ts": "eslint src tests scripts \"*.config.ts\" \"*.config.mjs\" --max-warnings=0",
"lint:ts:ci": "eslint src tests scripts \"*.config.ts\" \"*.config.mjs\" --max-warnings=0",
"release:check": "node scripts/release/check.mjs",
"release:preflight": "node scripts/release/preflight.mjs",
"release:prepare": "node scripts/release/prepare.mjs",
"test": "vitest run --cache",
"test:ci": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit --incremental --tsBuildInfoFile node_modules/.cache/typescript/tsconfig.tsbuildinfo",
"typecheck:ci": "tsc -p tsconfig.json --noEmit",
"unused": "npm run unused:exports",
"unused:exports": "knip --no-progress",
"check": "node scripts/check.mjs",
"check:ci": "node scripts/check.mjs --ci"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"knip": "^6.16.1",
"obsidian": "~1.12.3",
"prettier": "^3.8.3",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"dependencies": {
"@preact/signals": "^2.9.1",
"@tanstack/virtual-core": "3.17.0",
"preact": "^10.29.2"
}
}