Skip to content

Commit

Permalink
feat: fisrt version working
Browse files Browse the repository at this point in the history
  • Loading branch information
dubisdev committed Jul 9, 2023
1 parent ef79155 commit 817192c
Show file tree
Hide file tree
Showing 15 changed files with 475 additions and 120 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Pyground
# Pyground: A playground for Python
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />

<title>Pyground</title>
<style>
#root {
height: 100vh;
width: 100vw;
}
</style>
</head>

<body>
Expand Down
57 changes: 31 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
{
"name": "pyground",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@tauri-apps/api": "1.2.0"
},
"devDependencies": {
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@vitejs/plugin-react": "3.1.0",
"typescript": "4.9.5",
"vite": "4.2.1",
"@tauri-apps/cli": "1.2.3"
}
}
{
"name": "pyground",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@monaco-editor/react": "4.5.1",
"@tauri-apps/api": "1.4.0",
"@x-python/core": "0.0.9",
"just-debounce": "1.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"zustand": "4.3.9"
},
"devDependencies": {
"@tauri-apps/cli": "1.4.0",
"@types/node": "18.15.11",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vitejs/plugin-react": "4.0.2",
"monaco-editor": "0.40.0",
"typescript": "5.1.6",
"vite": "4.4.2"
}
}
Loading

0 comments on commit 817192c

Please sign in to comment.