Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
avirads committed May 30, 2023
0 parents commit 9cf9eea
Show file tree
Hide file tree
Showing 785 changed files with 82,647 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Start LCS Reflector sever on port 3001
https://github.com/NikolaySuslov/lcs-reflector

git clone https://github.com/avirads/solid-kres-polygonjs
pnpm install
pnpm run dev
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
<title>Solid-Krestianstvo</title>
</head>
<body>
<div id="root"></div>
<div id="app"></div>
<script src="/src/index.jsx" type="module"></script>
</body>
</html>
15 changes: 15 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true
}
}
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "vite-template-solid",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"polygon": "polygonjs-editor"
},
"license": "MIT",
"devDependencies": {
"vite": "^4.1.1",
"vite-plugin-solid": "^2.5.0"
},
"dependencies": {
"@polygonjs/polygonjs": "^1.4.16",
"krestianstvo": "^0.2.1",
"polygonjs-editor": "1.4.16-1",
"solid-js": "^1.6.10",
"three": "0.152.2"
}
}
Loading

0 comments on commit 9cf9eea

Please sign in to comment.