chore(project) gitignore, example for debugging, package.json

This commit is contained in:
Benjamin Wegener
2023-11-19 16:14:28 +00:00
parent 683d973857
commit bd4b8a7a59
5 changed files with 87 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "@cetra/cetra",
"version": "0.0.1",
"description": "Reactive Framework for building Web Applications",
"author": "Benjamin Wegener <me@benni.games>",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cetrahq/cetra.git"
},
"keywords": [],
"homepage": "https://cetra.dev/docs/en/start",
"bugs": "https://cetra.dev/bug-report",
"exports": {
".": [
{
"import": "./lib/lib.js",
"require": "./lib/lib.cjs",
"default": "./lib/lib.js"
},
"./lib/lib.js"
]
},
"license": "MIT"
}