murashit_codex-panel/package.json

62 lines
2.2 KiB
JSON
Raw Normal View History

2026-05-12 15:05:56 +00:00
{
"name": "codex-panel",
2026-07-10 12:04:13 +00:00
"version": "4.6.0",
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",
"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",
"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",
"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",
"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",
"release:check": "node scripts/release/check.mjs",
"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",
"typecheck": "tsc -p tsconfig.json --noEmit --incremental --tsBuildInfoFile node_modules/.cache/typescript/tsconfig.tsbuildinfo"
2026-05-12 15:05:56 +00:00
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@types/node": "^26.1.0",
"concurrently": "^10.0.3",
2026-05-14 14:19:44 +00:00
"esbuild": "^0.28.0",
"eslint": "^10.6.0",
"eslint-plugin-obsidianmd": "^0.4.1",
2026-05-12 15:05:56 +00:00
"jsdom": "^29.1.1",
"knip": "^6.24.0",
"moment": "^2.29.4",
"obsidian": "~1.12.3",
2026-05-12 15:05:56 +00:00
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
Bump the dev-dependencies group with 4 updates Bumps the dev-dependencies group with 4 updates: [eslint](https://github.com/eslint/eslint), [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip), [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `eslint` from 10.4.1 to 10.5.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.4.1...v10.5.0) Updates `knip` from 6.16.1 to 6.17.1 - [Release notes](https://github.com/webpro-nl/knip/releases) - [Commits](https://github.com/webpro-nl/knip/commits/knip@6.17.1/packages/knip) Updates `typescript-eslint` from 8.61.0 to 8.61.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.1/packages/typescript-eslint) Updates `vitest` from 4.1.8 to 4.1.9 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.9/packages/vitest) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: knip dependency-version: 6.17.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: typescript-eslint dependency-version: 8.61.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: vitest dependency-version: 4.1.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2026-06-25 13:24:45 +00:00
"vitest": "^4.1.9"
2026-05-27 10:37:11 +00:00
},
"dependencies": {
"@preact/signals": "^2.9.2",
"@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",
"obsidian-daily-notes-interface": "^0.9.5",
"preact": "^10.29.3"
2026-05-12 15:05:56 +00:00
}
}