create-neactor 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -0
- package/template/index.html +12 -0
- package/template/package.json +18 -0
- package/template/src/App.jsx +7 -0
- package/template/src/main.jsx +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>testing</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="root"></div>
|
|
10
|
+
<script src="./src/main.jsx"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "repo_side",
|
|
3
|
+
"version": "latest",
|
|
4
|
+
"description": "Super Simple Js Framework",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "Nika Jamaspishvili",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "main.jsx",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"neactor": "latest",
|
|
11
|
+
"neactor-dom": "latest"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "neactor dev",
|
|
15
|
+
"build": "neactor build",
|
|
16
|
+
"preview": "neactor preview"
|
|
17
|
+
}
|
|
18
|
+
}
|