2026-05-12 15:05:56 +00:00
|
|
|
{
|
|
|
|
|
"name": "codex-panel",
|
2026-07-20 12:17:14 +00:00
|
|
|
"version": "5.1.1",
|
2026-05-16 11:24:10 +00:00
|
|
|
"description": "Codex in your Obsidian sidebar.",
|
2026-05-12 15:05:56 +00:00
|
|
|
"main": "main.js",
|
|
|
|
|
"author": "murashit",
|
2026-05-14 08:06:55 +00:00
|
|
|
"license": "Apache-2.0",
|
2026-05-12 15:05:56 +00:00
|
|
|
"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",
|
2026-07-10 03:48:36 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=26"
|
|
|
|
|
},
|
2026-05-12 15:05:56 +00:00
|
|
|
"scripts": {
|
2026-06-16 03:58:55 +00:00
|
|
|
"api:baseline": "node scripts/api-baseline.mjs",
|
|
|
|
|
"build": "node esbuild.config.mjs",
|
2026-05-30 02:00:08 +00:00
|
|
|
"build:styles": "node scripts/build-styles.mjs",
|
2026-07-14 06:53:19 +00:00
|
|
|
"commitlint": "commitlint",
|
2026-07-10 07:31:52 +00:00
|
|
|
"check": "concurrently --group --pad-prefix 'node:check:*' && node --run build",
|
2026-06-25 00:16:04 +00:00
|
|
|
"check:biome": "biome check --diagnostic-level=warn --error-on-warnings",
|
2026-06-27 13:31:54 +00:00
|
|
|
"check:css-usage": "node scripts/check-css-usage.mjs",
|
2026-06-25 02:54:26 +00:00
|
|
|
"check:eslint": "eslint src manifest.json LICENSE --max-warnings=0",
|
2026-06-24 13:43:20 +00:00
|
|
|
"check:test": "node --run test",
|
|
|
|
|
"check:typecheck": "node --run typecheck",
|
|
|
|
|
"check:unused": "knip --no-progress",
|
2026-07-04 11:04:43 +00:00
|
|
|
"fix": "biome check --fix --skip=plugin --diagnostic-level=warn --error-on-warnings && knip --fix --no-progress",
|
2026-05-30 01:01:34 +00:00
|
|
|
"generate:app-server-types": "node scripts/generate-app-server-types.mjs",
|
2026-07-14 12:15:21 +00:00
|
|
|
"generate:app-server-types:check": "node scripts/generate-app-server-types.mjs --check",
|
2026-05-30 01:01:34 +00:00
|
|
|
"release:check": "node scripts/release/check.mjs",
|
2026-07-14 06:53:19 +00:00
|
|
|
"release:notes": "node scripts/release/notes.mjs",
|
2026-05-30 01:01:34 +00:00
|
|
|
"release:preflight": "node scripts/release/preflight.mjs",
|
|
|
|
|
"release:prepare": "node scripts/release/prepare.mjs",
|
2026-06-26 10:05:57 +00:00
|
|
|
"test": "vitest run --pool threads --maxWorkers 6",
|
2026-07-18 05:13:56 +00:00
|
|
|
"test:coverage": "vitest run --pool threads --maxWorkers 6 --coverage",
|
2026-07-18 08:12:21 +00:00
|
|
|
"test:mutation": "stryker run",
|
2026-06-24 13:43:20 +00:00
|
|
|
"typecheck": "tsc -p tsconfig.json --noEmit --incremental --tsBuildInfoFile node_modules/.cache/typescript/tsconfig.tsbuildinfo"
|
2026-05-12 15:05:56 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-07-16 23:56:35 +00:00
|
|
|
"@biomejs/biome": "^2.5.3",
|
2026-07-14 06:53:19 +00:00
|
|
|
"@commitlint/cli": "^21.2.1",
|
|
|
|
|
"@commitlint/config-conventional": "^21.2.0",
|
2026-07-18 08:12:21 +00:00
|
|
|
"@stryker-mutator/core": "^9.6.1",
|
|
|
|
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
2026-07-16 23:56:35 +00:00
|
|
|
"@types/node": "^26.1.1",
|
2026-07-18 05:13:56 +00:00
|
|
|
"@vitest/coverage-v8": "^4.1.10",
|
2026-06-19 01:01:00 +00:00
|
|
|
"concurrently": "^10.0.3",
|
2026-07-14 06:53:19 +00:00
|
|
|
"conventional-changelog-conventionalcommits": "^10.2.1",
|
|
|
|
|
"conventional-commits-parser": "^7.1.0",
|
2026-05-14 14:19:44 +00:00
|
|
|
"esbuild": "^0.28.0",
|
2026-07-10 07:20:35 +00:00
|
|
|
"eslint": "^10.6.0",
|
|
|
|
|
"eslint-plugin-obsidianmd": "^0.4.1",
|
2026-05-12 15:05:56 +00:00
|
|
|
"jsdom": "^29.1.1",
|
2026-07-16 23:56:35 +00:00
|
|
|
"knip": "^6.25.0",
|
2026-07-14 08:28:16 +00:00
|
|
|
"moment": "^2.30.1",
|
2026-05-17 12:18:49 +00:00
|
|
|
"obsidian": "~1.12.3",
|
2026-05-12 15:05:56 +00:00
|
|
|
"typescript": "^6.0.3",
|
2026-07-16 23:56:35 +00:00
|
|
|
"typescript-eslint": "^8.64.0",
|
2026-07-14 08:28:16 +00:00
|
|
|
"vitest": "^4.1.10"
|
2026-05-27 10:37:11 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-07-10 07:15:43 +00:00
|
|
|
"@tanstack/query-core": "^5.101.2",
|
2026-07-05 11:20:45 +00:00
|
|
|
"defuddle": "^0.19.1",
|
2026-06-18 05:38:11 +00:00
|
|
|
"micromark": "^4.0.2",
|
2026-07-10 11:27:01 +00:00
|
|
|
"obsidian-daily-notes-interface": "^0.9.5",
|
2026-07-16 14:26:26 +00:00
|
|
|
"preact": "^10.29.7"
|
2026-05-12 15:05:56 +00:00
|
|
|
}
|
|
|
|
|
}
|