2023-03-31 00:15:32 +00:00
|
|
|
{
|
2023-04-09 06:30:35 +00:00
|
|
|
"name": "obsidian-copilot",
|
2025-02-20 00:42:04 +00:00
|
|
|
"version": "2.8.6",
|
2023-04-09 06:30:35 +00:00
|
|
|
"description": "ChatGPT integration for Obsidian",
|
2023-03-31 00:30:47 +00:00
|
|
|
"main": "main.js",
|
|
|
|
|
"scripts": {
|
2024-12-28 18:41:08 +00:00
|
|
|
"dev": "npm-run-all --parallel dev:*",
|
|
|
|
|
"dev:tailwind": "npx tailwindcss -i src/styles/tailwind.css -o styles.css --watch",
|
|
|
|
|
"dev:esbuild": "node esbuild.config.mjs",
|
|
|
|
|
"build": "npm run build:tailwind && npm run build:esbuild || exit 1",
|
|
|
|
|
"build:tailwind": "npx tailwindcss -i src/styles/tailwind.css -o styles.css --minify",
|
|
|
|
|
"build:esbuild": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
2024-07-22 20:22:04 +00:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
|
|
|
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
2024-08-21 22:16:22 +00:00
|
|
|
"format": "prettier --write 'src/**/*.{js,ts,tsx,md}'",
|
|
|
|
|
"format:check": "prettier --check 'src/**/*.{js,ts,tsx,md}'",
|
2023-04-09 05:57:45 +00:00
|
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
2024-08-21 04:53:09 +00:00
|
|
|
"test": "jest",
|
|
|
|
|
"prepare": "husky"
|
2023-03-31 00:30:47 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2024-08-21 04:53:09 +00:00
|
|
|
"author": "Logan Yang",
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.{js,jsx,ts,tsx,json,css,md}": [
|
|
|
|
|
"prettier --write",
|
|
|
|
|
"git add"
|
|
|
|
|
]
|
|
|
|
|
},
|
2023-04-22 03:40:53 +00:00
|
|
|
"license": "AGPL-3.0",
|
2023-03-31 00:30:47 +00:00
|
|
|
"devDependencies": {
|
2024-11-05 06:26:17 +00:00
|
|
|
"@langchain/ollama": "^0.1.1",
|
2024-12-30 21:55:30 +00:00
|
|
|
"@tailwindcss/container-queries": "^0.1.1",
|
2023-04-09 05:57:45 +00:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-05-28 22:28:28 +00:00
|
|
|
"@types/crypto-js": "^4.1.1",
|
2023-04-18 03:58:13 +00:00
|
|
|
"@types/events": "^3.0.0",
|
2024-01-28 06:51:54 +00:00
|
|
|
"@types/jest": "^29.5.11",
|
2023-08-02 07:34:33 +00:00
|
|
|
"@types/koa": "^2.13.7",
|
|
|
|
|
"@types/koa__cors": "^4.0.0",
|
2024-11-22 01:36:52 +00:00
|
|
|
"@types/luxon": "^3.4.2",
|
2023-03-31 00:30:47 +00:00
|
|
|
"@types/node": "^16.11.6",
|
2023-04-04 02:17:23 +00:00
|
|
|
"@types/react": "^18.0.33",
|
|
|
|
|
"@types/react-dom": "^18.0.11",
|
2023-04-05 20:14:26 +00:00
|
|
|
"@types/react-syntax-highlighter": "^15.5.6",
|
2025-01-07 06:45:12 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
|
|
|
"@typescript-eslint/parser": "^8.19.1",
|
2023-03-31 00:30:47 +00:00
|
|
|
"builtin-modules": "3.3.0",
|
2024-02-22 05:47:55 +00:00
|
|
|
"electron": "^27.3.2",
|
2023-03-31 00:30:47 +00:00
|
|
|
"esbuild": "0.17.3",
|
2024-07-22 20:22:04 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-08-23 00:15:03 +00:00
|
|
|
"eslint-plugin-json": "^4.0.1",
|
2025-01-07 06:45:12 +00:00
|
|
|
"eslint-plugin-react": "^7.37.3",
|
|
|
|
|
"eslint-plugin-react-hooks": "^5.1.0",
|
2024-08-21 04:53:09 +00:00
|
|
|
"husky": "^9.1.5",
|
2024-01-28 06:51:54 +00:00
|
|
|
"jest": "^29.7.0",
|
2023-04-09 05:57:45 +00:00
|
|
|
"jest-environment-jsdom": "^29.5.0",
|
2024-08-21 04:53:09 +00:00
|
|
|
"lint-staged": "^15.2.9",
|
2024-12-28 18:41:08 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-08-25 06:29:44 +00:00
|
|
|
"obsidian": "^1.2.5",
|
2024-07-22 20:22:04 +00:00
|
|
|
"prettier": "^3.3.3",
|
2024-12-28 18:41:08 +00:00
|
|
|
"tailwindcss": "^3.4.15",
|
2023-04-09 05:57:45 +00:00
|
|
|
"ts-jest": "^29.1.0",
|
2023-03-31 00:30:47 +00:00
|
|
|
"tslib": "2.4.0",
|
2024-12-28 18:41:28 +00:00
|
|
|
"typescript": "^5.7.2",
|
2024-01-28 06:51:54 +00:00
|
|
|
"web-streams-polyfill": "^3.3.2"
|
2023-04-02 20:41:20 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-02-12 21:11:09 +00:00
|
|
|
"@dnd-kit/core": "^6.3.1",
|
|
|
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
|
|
|
"@dnd-kit/utilities": "^3.2.2",
|
2025-01-26 20:53:21 +00:00
|
|
|
"@google/generative-ai": "^0.21.0",
|
2024-01-11 06:16:19 +00:00
|
|
|
"@huggingface/inference": "^2.6.4",
|
|
|
|
|
"@koa/cors": "^5.0.0",
|
2024-09-30 23:03:32 +00:00
|
|
|
"@langchain/anthropic": "^0.3.3",
|
|
|
|
|
"@langchain/cohere": "^0.3.0",
|
2025-01-04 03:35:46 +00:00
|
|
|
"@langchain/community": "^0.3.22",
|
|
|
|
|
"@langchain/core": "^0.3.27",
|
2025-01-26 20:53:21 +00:00
|
|
|
"@langchain/google-genai": "^0.1.6",
|
2024-09-30 23:03:32 +00:00
|
|
|
"@langchain/groq": "^0.1.2",
|
2025-02-12 20:37:39 +00:00
|
|
|
"@langchain/mistralai": "^0.2.0",
|
2025-02-11 23:35:57 +00:00
|
|
|
"@langchain/openai": "^0.4.2",
|
2024-10-05 18:13:34 +00:00
|
|
|
"@orama/orama": "^3.0.0-rc-2",
|
2025-01-14 06:32:20 +00:00
|
|
|
"@radix-ui/react-checkbox": "^1.1.3",
|
2024-12-30 21:55:30 +00:00
|
|
|
"@radix-ui/react-collapsible": "^1.1.2",
|
2025-01-14 06:32:20 +00:00
|
|
|
"@radix-ui/react-dialog": "^1.1.3",
|
2025-01-22 06:03:22 +00:00
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
2025-01-14 06:32:20 +00:00
|
|
|
"@radix-ui/react-label": "^2.1.0",
|
2025-01-22 06:03:22 +00:00
|
|
|
"@radix-ui/react-popover": "^1.1.4",
|
2025-01-14 06:32:20 +00:00
|
|
|
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
|
|
|
"@radix-ui/react-select": "^2.1.2",
|
|
|
|
|
"@radix-ui/react-slider": "^1.2.1",
|
|
|
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
|
|
|
"@radix-ui/react-switch": "^1.1.1",
|
2024-12-30 21:55:30 +00:00
|
|
|
"@radix-ui/react-tooltip": "^1.1.6",
|
2023-04-05 20:14:26 +00:00
|
|
|
"@tabler/icons-react": "^2.14.0",
|
2023-04-04 02:17:23 +00:00
|
|
|
"axios": "^1.3.4",
|
2024-11-22 01:36:52 +00:00
|
|
|
"chrono-node": "^2.7.7",
|
2024-12-28 18:41:08 +00:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2024-09-08 21:50:38 +00:00
|
|
|
"cohere-ai": "^7.13.0",
|
2023-05-28 22:28:28 +00:00
|
|
|
"crypto-js": "^4.1.1",
|
2023-04-04 20:09:45 +00:00
|
|
|
"esbuild-plugin-svg": "^0.1.0",
|
2023-04-05 16:14:01 +00:00
|
|
|
"eventsource-parser": "^1.0.0",
|
2024-12-01 06:36:23 +00:00
|
|
|
"jotai": "^2.10.3",
|
2023-08-02 07:34:33 +00:00
|
|
|
"koa": "^2.14.2",
|
|
|
|
|
"koa-proxies": "^0.12.3",
|
2024-09-30 23:03:32 +00:00
|
|
|
"langchain": "^0.3.2",
|
2024-11-27 20:15:58 +00:00
|
|
|
"lucide-react": "^0.462.0",
|
2024-11-22 01:36:52 +00:00
|
|
|
"luxon": "^3.5.0",
|
2023-04-05 20:14:26 +00:00
|
|
|
"next-i18next": "^13.2.2",
|
|
|
|
|
"prop-types": "^15.8.1",
|
2023-04-04 02:17:23 +00:00
|
|
|
"react": "^18.2.0",
|
2023-04-05 19:13:34 +00:00
|
|
|
"react-dom": "^18.2.0",
|
2025-01-22 06:58:02 +00:00
|
|
|
"react-dropzone": "^14.3.5",
|
2024-08-25 06:29:44 +00:00
|
|
|
"react-markdown": "^9.0.1",
|
2023-04-21 03:30:14 +00:00
|
|
|
"react-syntax-highlighter": "^15.5.0",
|
2024-12-28 18:41:08 +00:00
|
|
|
"sse": "github:mpetazzoni/sse.js",
|
|
|
|
|
"tailwind-merge": "^2.5.5",
|
|
|
|
|
"tailwindcss-animate": "^1.0.7"
|
2023-03-31 00:30:47 +00:00
|
|
|
}
|
2024-07-22 20:27:36 +00:00
|
|
|
}
|