murashit_codex-panel/package.json

42 lines
1.7 KiB
JSON
Raw Normal View History

2026-05-12 15:05:56 +00:00
{
"name": "codex-panel",
2026-05-15 01:04:24 +00:00
"version": "0.1.9",
2026-05-12 15:05:56 +00:00
"description": "Obsidian side panel for Codex app-server.",
"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": {
"build": "node esbuild.config.mjs",
"build:prod": "node esbuild.config.mjs --production",
"dev": "node esbuild.config.mjs --watch",
2026-05-14 12:49:50 +00:00
"format": "prettier --write \"src/**/*.{ts,tsx,js,mjs,json,css,md}\" \"tests/**/*.{ts,tsx,js,mjs,json,css,md}\" \"scripts/**/*.{js,mjs}\" \"*.{json,mjs,md,css}\" \"!src/generated/**\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,mjs,json,css,md}\" \"tests/**/*.{ts,tsx,js,mjs,json,css,md}\" \"scripts/**/*.{js,mjs}\" \"*.{json,mjs,md,css}\" \"!src/generated/**\"",
"generate:app-server-types": "codex app-server generate-ts --experimental --out src/generated/app-server && node scripts/normalize-generated-types.mjs",
2026-05-12 15:05:56 +00:00
"lint": "eslint src tests --max-warnings=0",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "npm run typecheck && npm run test && npm run lint && npm run format:check && npm run build:prod"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
2026-05-14 14:19:44 +00:00
"esbuild": "^0.28.0",
2026-05-12 15:05:56 +00:00
"eslint": "^10.3.0",
2026-05-13 00:54:49 +00:00
"eslint-plugin-obsidianmd": "^0.3.0",
2026-05-12 15:05:56 +00:00
"jsdom": "^29.1.1",
"obsidian": "^1.12.3",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}