-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1016 Bytes
/
package.json
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
{
"name": "@cldn/web-ts",
"version": "0.0.0-dev",
"description": "Class-based Node.js web server",
"main": "dist/src/index.js",
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/*.json"
],
"scripts": {
"prebuild": "npm run gen:indices",
"build": "tsc",
"docs": "typedoc",
"gen:indices": "./generateIndices.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudnode-pro/web-ts.git"
},
"keywords": [
"web",
"server",
"node",
"typescript",
"ts",
"class-based"
],
"author": "Cloudnode OÜ",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/cloudnode-pro/web-ts/issues"
},
"homepage": "https://github.com/cloudnode-pro/web-ts#readme",
"devDependencies": {
"@types/node": "^22.13.10",
"typedoc": "^0.28.0",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.8.2"
},
"dependencies": {
"@cldn/ip": "^1.0.3",
"multipart-ts": "^1.3.2"
}
}