-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "markpilot",
"version": "1.2.5",
"description": "Inline completions and chat view powered by OpenAI",
"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",
"format:fix": "prettier src --write",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --max-warnings 0 --fix",
"test": "jest",
"scrape": "ts-node src/scripts/scrape.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.11.6",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"axios": "^1.6.8",
"builtin-modules": "3.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.0.0",
"esbuild": "0.17.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"jest": "^29.7.0",
"obsidian": "latest",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.0",
"chart.js": "^4.4.2",
"js-tiktoken": "^1.0.10",
"lucide-react": "^0.363.0",
"minimatch": "^9.0.4",
"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"
}
}