-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@nasriya/hypercloud",
"version": "1.2.9",
"description": "Nasriya HyperCloud is a lightweight Node.js HTTP2 framework.",
"keywords": [
"Server-side rendering",
"SSR framework",
"JavaScript framework",
"Node.js framework",
"Component-based rendering",
"Multilingual support",
"Dynamic components",
"Page templates",
"Asset management",
"Global stylesheets",
"Global scripts",
"Meta tags",
"Reusable components",
"Web development",
"Backend framework",
"Full-stack JavaScript",
"EJS templates",
"Component assets",
"Page assets",
"Rendering manager",
"http2"
],
"type": "module",
"main": "./dist/cjs/hypercloud.js",
"module": "./dist/esm/hypercloud.js",
"types": "./dist/@types/hypercloud.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/hypercloud.js",
"require": "./dist/cjs/hypercloud.js",
"types": "./dist/@types/hypercloud.d.ts"
}
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"postbuild-init": "postbuild-init",
"test": "jest",
"deepTest": "jest --coverage",
"dev": "node ./.dev"
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "ahmad@nasriya.net",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"repository": {
"type": "github",
"url": "https://github.com/nasriyasoftware/HyperCloud"
},
"bugs": {
"url": "https://github.com/nasriyasoftware/HyperCloud/issues"
},
"homepage": "https://package.nasriya.net/HyperCloud",
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
},
"license": "NPCL-1",
"author": "Nasriya Software",
"devDependencies": {
"@nasriya/postbuild": "^1.1.5",
"@types/ejs": "^3.1.5",
"@types/jest": "^30.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^24.10.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@nasriya/atomix": "^1.0.23",
"@nasriya/cachify": "^0.0.11-beta",
"@nasriya/mimex": "^0.0.2-beta",
"@nasriya/overwatch": "^1.1.4",
"ejs": "^3.1.10",
"ms": "^2.1.3",
"tldts": "^7.0.17"
}
}