asjs-express 1.1.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 ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "asjs-express",
3
+ "version": "1.1.0",
4
+ "description": "Lightweight Express view engine with EJS-like templates, layouts, async page rendering, form enhancement, and a built-in client router.",
5
+ "main": "index.js",
6
+ "author": {
7
+ "name": "Acarfx",
8
+ "url": "https://acarfx.com"
9
+ },
10
+ "contributors": [
11
+ {
12
+ "name": "Seyfullah Kısacık",
13
+ "url": "https://seyfooksck.com/"
14
+ }
15
+ ],
16
+ "exports": {
17
+ ".": "./index.js",
18
+ "./router": "./lib/client/asjs-router.js",
19
+ "./styles": "./lib/client/asjs-core.css",
20
+ "./theme": "./lib/client/asjs-theme.css",
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "index.js",
25
+ "lib",
26
+ "README.md"
27
+ ],
28
+ "scripts": {
29
+ "start": "node example-express/app.js",
30
+ "demo": "node example-express/app.js",
31
+ "dev": "node example-express/app.js",
32
+ "example:express": "node example-express/app.js",
33
+ "pack:check": "npm pack --dry-run"
34
+ },
35
+ "keywords": [
36
+ "asjs",
37
+ "component",
38
+ "ejs",
39
+ "express",
40
+ "express-view-engine",
41
+ "forms",
42
+ "layout",
43
+ "prefetch",
44
+ "server-rendered",
45
+ "ssr",
46
+ "template-engine",
47
+ "view-engine",
48
+ "spa-navigation"
49
+ ],
50
+ "license": "MIT",
51
+ "engines": {
52
+ "node": ">=16.14"
53
+ },
54
+ "publishConfig": {
55
+ "access": "public"
56
+ },
57
+ "peerDependencies": {
58
+ "express": "^4.21.2"
59
+ },
60
+ "dependencies": {
61
+ "express": "^4.21.2"
62
+ }
63
+ }