-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.02 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cardly",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --plugin-search-dir . --check .",
"format": "prettier --ignore-path .gitignore --plugin-search-dir . --write ."
},
"dependencies": {
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.12.0",
"@dqbd/tiktoken": "^1.0.7",
"@notionhq/client": "^2.2.5",
"@syncedstore/core": "^0.5.1",
"@syncedstore/svelte": "^0.5.1",
"@types/pdfjs-dist": "^2.10.378",
"cm6-theme-basic-dark": "^0.2.0",
"codemirror": "^6.0.1",
"langchain": "^0.0.90",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-katex": "^2.0.3",
"nanoid": "^4.0.2",
"notion-to-md": "^3.0.1",
"openai": "^3.2.1",
"pdfjs-dist": "^3.6.172",
"tesseract.js": "^4.0.5",
"y-codemirror.next": "^0.3.2",
"y-indexeddb": "^9.0.11",
"y-webrtc": "^10.2.5",
"yjs": "^13.6.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.15.5",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.0",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"tailwindcss": "^3.3.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.2"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"endOfLine": "lf"
}
}