forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.39 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.39 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
{
"name": "veko",
"version": "1.3.0",
"description": "Ultra-lightweight Node.js framework with ZERO dependencies - VSV components, Tailwind CSS, asset imports, SSR",
"main": "index.js",
"bin": {
"veko": "./bin/veko.js"
},
"scripts": {
"dev": "node bin/veko.js dev",
"build": "node bin/veko.js build",
"start": "node bin/veko.js start",
"test": "node --test",
"demo": "node examples/demo.js"
},
"keywords": [
"framework",
"zero-dependencies",
"lightweight",
"vsv",
"veko-server-views",
"components",
"hot-reload",
"ssr",
"server-side-rendering",
"hydration",
"jsx",
"no-dependencies",
"minimal",
"fast",
"tailwind",
"tailwindcss",
"asset-imports",
"css-imports"
],
"author": "Wiltark <contact@wiltark.fr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wiltark/veko.js.git"
},
"bugs": {
"url": "https://github.com/wiltark/veko.js/issues"
},
"homepage": "https://veko.js.org",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {},
"files": [
"lib/",
"bin/",
"index.js",
"README.md"
],
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wiltark"
}
}