murashit_codex-panel/package.json

70 lines
2.8 KiB
JSON
Raw Normal View History

2026-05-12 15:05:56 +00:00
{
"name": "codex-panel",
2026-06-18 06:58:52 +00:00
"version": "3.2.8",
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",
"scripts": {
2026-06-16 03:58:55 +00:00
"api:baseline": "node scripts/api-baseline.mjs",
"api:baseline:check": "node scripts/api-baseline.mjs --check",
"build": "node esbuild.config.mjs",
2026-05-30 02:00:08 +00:00
"build:styles": "node scripts/build-styles.mjs",
"build:styles:check": "node scripts/build-styles.mjs --check",
2026-06-16 03:58:55 +00:00
"check": "node scripts/check.mjs",
"check:ci": "node scripts/check.mjs --ci",
2026-05-30 00:51:11 +00:00
"format": "node scripts/format.mjs",
2026-05-30 01:01:34 +00:00
"format:check": "node scripts/format.mjs --check --cache",
2026-05-30 00:51:11 +00:00
"format:check:ci": "node scripts/format.mjs --check",
2026-05-30 01:01:34 +00:00
"generate:app-server-types": "node scripts/generate-app-server-types.mjs",
2026-06-16 03:58:55 +00:00
"lint": "node scripts/run-parallel.mjs lint:ts lint:css lint:css-usage lint:deps lint:unused",
"lint:ci": "node scripts/run-parallel.mjs lint:ts:ci lint:css lint:css-usage lint:deps lint:unused",
2026-05-30 02:00:08 +00:00
"lint:css": "stylelint \"src/**/*.css\" --max-warnings=0",
2026-06-16 03:58:55 +00:00
"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",
"lint:ts:ci": "eslint src tests scripts \"*.config.ts\" \"*.config.mjs\" --max-warnings=0",
2026-06-16 03:58:55 +00:00
"lint:unused": "knip --no-progress",
2026-05-30 01:01:34 +00:00
"release:check": "node scripts/release/check.mjs",
"release:preflight": "node scripts/release/preflight.mjs",
"release:prepare": "node scripts/release/prepare.mjs",
2026-06-07 04:20:49 +00:00
"test": "vitest run --cache",
"test:ci": "vitest run",
2026-05-29 23:51:05 +00:00
"typecheck": "tsc -p tsconfig.json --noEmit --incremental --tsBuildInfoFile node_modules/.cache/typescript/tsconfig.tsbuildinfo",
2026-06-16 03:58:55 +00:00
"typecheck:ci": "tsc -p tsconfig.json --noEmit"
2026-05-12 15:05:56 +00:00
},
"devDependencies": {
"@eslint/js": "^10.0.1",
2026-05-12 15:05:56 +00:00
"@types/node": "^25.6.0",
2026-05-14 14:19:44 +00:00
"esbuild": "^0.28.0",
Bump the dev-dependencies group with 3 updates Bumps the dev-dependencies group with 3 updates: [eslint](https://github.com/eslint/eslint), [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.0 to 10.4.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.4.0...v10.4.1) Updates `typescript-eslint` from 8.60.0 to 8.60.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.60.1/packages/typescript-eslint) Updates `vitest` from 4.1.7 to 4.1.8 - [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.8/packages/vitest) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: typescript-eslint dependency-version: 8.60.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: vitest dependency-version: 4.1.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2026-06-11 13:25:55 +00:00
"eslint": "^10.4.1",
2026-05-22 22:05:52 +00:00
"eslint-config-prettier": "^10.1.8",
2026-05-13 00:54:49 +00:00
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
2026-05-12 15:05:56 +00:00
"jsdom": "^29.1.1",
2026-06-07 04:20:49 +00:00
"knip": "^6.16.1",
"obsidian": "~1.12.3",
2026-05-12 15:05:56 +00:00
"prettier": "^3.8.3",
2026-05-24 09:08:08 +00:00
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
2026-05-12 15:05:56 +00:00
"typescript": "^6.0.3",
Bump the dev-dependencies group with 3 updates Bumps the dev-dependencies group with 3 updates: [eslint](https://github.com/eslint/eslint), [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.0 to 10.4.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.4.0...v10.4.1) Updates `typescript-eslint` from 8.60.0 to 8.60.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.60.1/packages/typescript-eslint) Updates `vitest` from 4.1.7 to 4.1.8 - [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.8/packages/vitest) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: typescript-eslint dependency-version: 8.60.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: vitest dependency-version: 4.1.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2026-06-11 13:25:55 +00:00
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
2026-05-27 10:37:11 +00:00
},
"dependencies": {
"@preact/signals": "^2.9.1",
2026-06-15 08:44:34 +00:00
"@tanstack/query-core": "^5.101.0",
2026-06-07 09:18:51 +00:00
"@tanstack/virtual-core": "3.17.0",
2026-06-18 05:38:11 +00:00
"micromark": "^4.0.2",
2026-05-31 03:37:18 +00:00
"preact": "^10.29.2"
2026-05-12 15:05:56 +00:00
}
}