-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"build-latex": "nearleyc src/mathquill/latex.ne -o src/mathquill/latex.ts"
},
"dependencies": {
"@astrojs/mdx": "^0.18.0",
"@astrojs/solid-js": "^2.1.0",
"@astrojs/tailwind": "^3.1.0",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-sql": "^6.7.0",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.28.4",
"@eslint/js": "^9.6.0",
"@fast-csv/format": "^5.0.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@solid-primitives/media": "^2.1.3",
"@sqlite.org/sqlite-wasm": "^3.46.0-build2",
"@supabase/supabase-js": "^2.43.4",
"@tailwindcss/container-queries": "^0.1.0",
"@tailwindcss/typography": "^0.5.9",
"@thisbeyond/solid-dnd": "^0.7.5",
"@types/color-diff": "^1.2.5",
"@types/dompurify": "^3.0.5",
"@types/moo": "^0.5.9",
"@types/nearley": "^2.11.5",
"@types/random-seed": "^0.3.5",
"@types/sortablejs": "^1.15.8",
"@zsnout/ithkuil": "^0.1.104",
"@zsnout/tailwind": "^0.1.15",
"astro": "~2.10.15",
"codemirror": "^6.0.1",
"color-diff": "^1.4.0",
"csv-stringify": "^6.5.1",
"dompurify": "^3.1.5",
"eslint": "^9.6.0",
"fast-fuzzy": "^1.12.0",
"fastest-levenshtein": "^1.0.16",
"idb": "^8.0.0",
"jszip": "^3.10.1",
"katex": "^0.16.4",
"lightweight-charts": "^4.2.1",
"nearley": "^2.20.1",
"pdfjs-dist": "^4.2.67",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-embed": "^0.4.15",
"prettier-plugin-glsl": "^0.2.0",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-sql-cst": "^0.11.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"random-seed": "^0.3.0",
"rehype-katex": "^6.0.2",
"remark-math": "^5.1.1",
"solid-js": "^1.6.12",
"solid-monaco": "^0.2.0",
"sortablejs": "^1.15.2",
"supabase": "^1.200.3",
"tailwindcss": "^3.2.7",
"temporal-polyfill": "^0.2.4",
"ts-fsrs": "3.5.7",
"typescript": "^5.5.3",
"typescript-eslint": "^7.14.1",
"unzipit": "^1.4.3",
"valibot": "^0.35.0",
"vite": "^5.0.0-beta.11",
"vite-plugin-glsl": "^1.1.2",
"vite-tsconfig-paths": "^4.3.2"
},
"prettier": {
"semi": false,
"proseWrap": "always",
"plugins": [
"prettier-plugin-jsdoc",
"prettier-plugin-astro",
"prettier-plugin-embed",
"prettier-plugin-glsl",
"prettier-plugin-sql-cst",
"prettier-plugin-tailwindcss"
],
"trailingComma": "all",
"experimentalTernaries": true,
"embeddedSqlPlugin": "prettier-plugin-sql-cst",
"sqlParamTypes": [
"?",
"?nr",
"$nr",
":name",
"@name",
"$name"
],
"embeddedSqlTags": [
"sql",
"this.sql"
]
},
"overrides": {
"eslint": "^9.6.0"
}
}