First commit
Create basic render engine that only allows to add elements
This commit is contained in:
parent
0d3eb3d40f
commit
f411544fe9
14 changed files with 414 additions and 0 deletions
22
package.json
Normal file
22
package.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"name": "yarjs",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.5.0",
|
||||
"@types/bun": "latest",
|
||||
"@types/react": "^18.3.3",
|
||||
"eslint": "9.x",
|
||||
"globals": "^15.6.0",
|
||||
"typescript": "^5.2.2",
|
||||
"typescript-eslint": "^7.13.1",
|
||||
"vite": "^5.3.1"
|
||||
},
|
||||
"module": "index.ts"
|
||||
}
|
||||
Reference in a new issue