infio-copilot/package.json
2025-04-28 16:58:29 +08:00

114 lines
3.4 KiB
JSON

{
"name": "obsidian-infio-copilot",
"version": "0.1.2",
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
"main": "main.js",
"scripts": {
"bundle-pglite": "node scripts/bundle-pglite-resources.mjs",
"dev": "npm run bundle-pglite && node esbuild.config.mjs",
"build": "npm run bundle-pglite && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs",
"type:check": "tsc --noEmit",
"test": "jest",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/diff": "^5.2.3",
"@types/diff-match-patch": "^1.0.36",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.14.195",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^16.11.6",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"builtin-modules": "3.3.0",
"drizzle-kit": "^0.26.2",
"esbuild": "0.17.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-neverthrow": "^1.1.4",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "^1.8.7",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"ts-jest": "^29.2.5",
"tslib": "2.4.0",
"typescript": "^4.9.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/merge": "^6.10.0",
"@electric-sql/pglite": "0.2.14",
"@google/generative-ai": "^0.21.0",
"@langchain/core": "^0.3.26",
"@lexical/clipboard": "^0.17.1",
"@lexical/react": "^0.17.1",
"@lexical/rich-text": "^0.27.2",
"@lexical/utils": "^0.27.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-query": "^5.56.2",
"axios": "^1.8.3",
"clsx": "^2.1.1",
"diff": "^7.0.0",
"diff-match-patch": "^1.0.5",
"drizzle-orm": "^0.35.2",
"esbuild-plugin-inline-worker": "^0.1.1",
"exponential-backoff": "^3.1.1",
"fastest-levenshtein": "^1.0.16",
"fuse.js": "^7.1.0",
"fuzzysort": "^3.1.0",
"groq-sdk": "^0.7.0",
"handlebars": "^4.7.7",
"js-tiktoken": "^1.0.15",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"langchain": "^0.3.2",
"lexical": "^0.17.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lru-cache": "^10.1.0",
"lucide-react": "^0.447.0",
"micromatch": "^4.0.5",
"minimatch": "^10.0.1",
"neverthrow": "^6.1.0",
"openai": "^4.73.0",
"p-limit": "^6.1.0",
"parse5": "^7.1.2",
"path": "^0.12.7",
"radix-ui": "^1.3.4",
"react": "^18.3.1",
"react-contenteditable": "^3.3.7",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"simple-git": "^3.27.0",
"string-similarity": "^4.0.4",
"uuid": "^10.0.0",
"zod": "^3.22.4"
}
}