-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.36 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rjweb-server",
"version": "9.8.5",
"description": "Easy and Robust Way to create a Web Server with many easy-to-use Features in Node.js",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/typings/index.d.ts",
"scripts": {
"build:esm": "ttsc --outDir lib/esm --module ESNext && mv lib/esm/src/* lib/esm && rm -rf lib/esm/src",
"build:cjs": "ttsc --outDir lib/cjs --module CommonJS && mv lib/cjs/src/* lib/cjs && rm -rf lib/cjs/src",
"build:typings": "ttsc --outDir lib/typings --emitDeclarationOnly --declaration && mv lib/typings/src/* lib/typings && rm -rf lib/typings/src",
"build:full": "rm -rf lib && pnpm build:esm & pnpm build:cjs & pnpm build:typings && wait && sed -i -e 's|\"package.json\"|\"./package.json\"|' lib/**/*.js && echo \"Size $(du -sh lib)\"",
"docs": "rm -rf docs && typedoc --githubPages false --includeVersion --out docs src/index.ts --plugin typedoc-material-theme --themeColor '#cb9820' && find docs -type f -name '*.html' -exec sed -i -e 's|<meta charSet=\"utf-8\"/>|<meta charSet=\"utf-8\"/><link rel=\"icon\" type=\"image/svg+xml\" href=\"https://cdn.rjns.dev/rjweb/icon.svg\">|' {} + && chmod -R a+rw docs",
"cli": "node lib/cjs/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x7d8/NPM_WEB-SERVER.git"
},
"bin": {
"rjweb": "lib/cjs/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"webserver",
"web-server",
"lightweight",
"server",
"restful",
"rest",
"node",
"http",
"easy",
"api",
"web",
"backend"
],
"author": "0x7d8 (0x4096 / Robert Jansen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x7d8/NPM_WEB-SERVER/issues"
},
"homepage": "https://github.com/0x7d8/NPM_WEB-SERVER#readme",
"devDependencies": {
"@types/content-disposition": "^0.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"rjweb-server": "link:",
"tsc-progress": "^1.0.4",
"ttsc": "^0.3.1",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.0.2",
"typescript": "^5.4.5",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"@rjweb/utils": "^1.12.20",
"content-disposition": "^0.5.4",
"inquirer": "^9.2.23",
"openapi3-ts": "^4.3.2",
"yargs": "^17.7.2",
"zod": "^3.23.8"
}
}