-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 896 Bytes
/
package.json
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
26
27
28
29
30
31
32
33
{
"name": "keml",
"version": "3.1.0",
"description": "An HTMX alternative with a focus on performance, flexibility and, most of all, simplicity.",
"main": "keml.js",
"scripts": {
"install": "pip install -r requirements.txt",
"build": "npx esbuild keml.ts --minify --format=esm --mangle-props=_$ --outdir=.",
"docs:serve": "mkdocs serve",
"docs:deploy": "mkdocs gh-deploy --force",
"todo": "python -m examples.todo.server",
"realworld": "python -m examples.realworld.server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thealjey/keml.git"
},
"keywords": [
"htmx",
"alternative"
],
"files": [
"LICENSE",
"README.md",
"keml.js"
],
"author": "Eugene Kuzmenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/thealjey/keml/issues"
},
"homepage": "https://thealjey.github.io/keml/"
}