-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.12 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "uiwiz",
"version": "1.0.0",
"description": "UiWizard is a python-based ui-framework for the web. It was inspired by the great framework [NiceGui](https://github.com/zauberzeug/nicegui). Why create this project that is very similar to NiceGui?\r - The first reason was that NiceGui requires websockets to work and when experimenting with the framework it caused some issues on my hosting platform.\r - Learning. I wanted to figure out how to do something simillar but without using websockets\r - I wanted to try out HTMX\r - Limited control over the underlaying tech stack but mainly just learning",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tailwindcss -c ./tailwindcss/tailwind.config.js -i ./tailwindcss/input.css -o ./uiwiz/static/libs/output.css --minify --content ./**/*.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"daisyui": "^5.0.42",
"tailwindcss": "^4.1.8"
},
"dependencies": {
"@tailwindcss/cli": "^4.1.8"
}
}