-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.17 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
{
"name": "padmajs",
"version": "0.0.2",
"description": "A lightweight TypeScript backend framework for building modern server-side applications.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc"
},
"keywords": [
"padmajs",
"framework",
"backend",
"typescript",
"nodejs",
"http",
"server",
"routing"
],
"author": "Samman Das",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RayBreeze/padmajs.git"
},
"bugs": {
"url": "https://github.com/RayBreeze/padmajs/issues"
},
"homepage": "https://github.com/RayBreeze/padmajs#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
}
}