-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.98 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"allowScripts": {
"esbuild": true
},
"author": "Eugene Kuzmenko",
"bugs": {
"url": "https://github.com/thealjey/keml/issues"
},
"description": "Enhance HTML with custom attributes for clean, server-driven interactivity.",
"devDependencies": {
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.9",
"dependency-cruiser": "^17.4.3",
"esbuild": "^0.28.1",
"happy-dom": "^20.10.6",
"vitest": "^4.1.9"
},
"files": [
"keml.js",
"LICENSE",
"README.md"
],
"homepage": "https://thealjey.github.io/keml/",
"keywords": [
"ajax",
"attribute-driven",
"declarative-ui",
"declarative",
"dom-updates",
"event-driven-ui",
"frontend-framework",
"html-attributes",
"html-extensions",
"html",
"htmx-alternative",
"hypermedia",
"interactive-html",
"keml",
"lightweight",
"no-javascript",
"progressive-enhancement",
"server-driven-ui",
"server-rendered",
"server-sent-events",
"server-side-rendering",
"spa-alternative",
"sse",
"ssr",
"unobtrusive-javascript",
"zero-javascript"
],
"license": "MIT",
"main": "keml.js",
"name": "keml",
"repository": {
"type": "git",
"url": "git+https://github.com/thealjey/keml.git"
},
"scripts": {
"build": "node bin/build.mts",
"demo:realworld": "python -X utf8 -m examples.realworld.server -o",
"demo:sse": "python -X utf8 -m examples.sse.server -o",
"demo:todo": "python -X utf8 -m examples.todo.server -o",
"docs:build": "NODE_ENV=docs npm run build && mkdocs build",
"docs:deploy": "NODE_ENV=docs npm run build && mkdocs gh-deploy --force",
"docs:serve": "node bin/docsServe.mts",
"pip:install": "pip install --upgrade markdown 'mkdocs<2' 'mkdocs-material==9.6.20'",
"prebuild": "depcruise --config bin/cycles.mjs 'src/**/*.mts'",
"test": "NODE_ENV=test vitest run -c bin/test.mts",
"test:watch": "NODE_ENV=test vitest watch -c bin/test.mts"
},
"version": "3.8.1"
}