-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
21 lines (21 loc) · 959 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"scripts": {
"build": "mkdir -p out && cp -f pyodide-worker.js favicon.png index.html out && NODE_ENV=production npx esbuild src/main.jsx --minify --bundle --outfile=out/main.js --jsx=automatic --sourcemap=external --loader:.svg=file --loader:.woff=file --loader:.woff2=file --loader:.ttf=file",
"dev": "mkdir -p out && cp -f pyodide-worker.js favicon.png index.html out && npx esbuild src/main.jsx --bundle --outfile=out/main.js --jsx=automatic --sourcemap=inline --loader:.svg=file --loader:.woff=file --loader:.woff2=file --loader:.ttf=file --watch --servedir=out"
},
"dependencies": {
"gpt-tokenizer": "^2.1.1",
"gzip-js": "^0.3.2",
"mermaid": "^10.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0"
},
"devDependencies": {
"esbuild": "^0.19.9"
}
}