taichimaeda_markpilot/package.json
2024-04-02 16:29:12 +09:00

45 lines
1.3 KiB
JSON

{
"name": "obsidian-copilot",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"typecheck": "tsc --noEmit",
"format": "prettier src --check",
"lint": "eslint src --max-warnings 0",
"test": "echo \"Error: no test specified\""
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/language": "^6.10.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.0",
"@emotion/react": "^11.11.4",
"lucide-react": "^0.363.0",
"obsidian": "latest",
"openai": "^4.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0"
}
}