mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
70 lines
3.6 KiB
JSON
70 lines
3.6 KiB
JSON
{
|
|
"name": "codex-panel",
|
|
"version": "3.2.8",
|
|
"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": {
|
|
"api:baseline": "node scripts/api-baseline.mjs",
|
|
"api:baseline:check": "node scripts/api-baseline.mjs --check",
|
|
"build": "node esbuild.config.mjs",
|
|
"build:styles": "node scripts/build-styles.mjs",
|
|
"build:styles:check": "node scripts/build-styles.mjs --check",
|
|
"check": "concurrently --group --pad-prefix --names typecheck,test,lint:ts,lint:css,lint:css-usage,lint:deps,lint:unused,format:check,build:styles:check,build \"npm run --silent typecheck\" \"npm run --silent test\" \"npm run --silent lint:ts\" \"npm run --silent lint:css\" \"npm run --silent lint:css-usage\" \"npm run --silent lint:deps\" \"npm run --silent lint:unused\" \"npm run --silent format:check\" \"npm run --silent build:styles:check\" \"npm run --silent build\"",
|
|
"check:ci": "npm run typecheck:ci && npm run test:ci && npm run lint:ci && npm run format:check:ci && npm run build:styles:check && npm run build",
|
|
"format": "node scripts/format.mjs",
|
|
"format:check": "node scripts/format.mjs --check --cache",
|
|
"format:check:ci": "node scripts/format.mjs --check",
|
|
"generate:app-server-types": "node scripts/generate-app-server-types.mjs",
|
|
"lint": "concurrently --group --pad-prefix --names lint:ts,lint:css,lint:css-usage,lint:deps,lint:unused \"npm run --silent lint:ts\" \"npm run --silent lint:css\" \"npm run --silent lint:css-usage\" \"npm run --silent lint:deps\" \"npm run --silent lint:unused\"",
|
|
"lint:ci": "npm run lint:ts:ci && npm run lint:css && npm run lint:css-usage && npm run lint:deps && npm run lint:unused",
|
|
"lint:css": "stylelint \"src/**/*.css\" --max-warnings=0",
|
|
"lint:css-usage": "node scripts/lint/check-css-usage.mjs --fail-on-candidates",
|
|
"lint:deps": "node scripts/lint/check-import-cycles.mjs",
|
|
"lint:ts": "eslint src tests scripts \"*.config.ts\" \"*.config.mjs\" --max-warnings=0 --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslintcache",
|
|
"lint:ts:ci": "eslint src tests scripts \"*.config.ts\" \"*.config.mjs\" --max-warnings=0",
|
|
"lint:unused": "knip --no-progress",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^25.6.0",
|
|
"concurrently": "^10.0.3",
|
|
"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/query-core": "^5.101.0",
|
|
"@tanstack/virtual-core": "3.17.0",
|
|
"micromark": "^4.0.2",
|
|
"preact": "^10.29.2"
|
|
}
|
|
}
|