-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@mablay/handcar",
"version": "0.9.3",
"description": "Minimal webserver. Live reload, WebSockets, File Server, Express compliant(ish)",
"main": "index.js",
"type": "module",
"bin": {
"handcar": "./bin/handcar.js"
},
"scripts": {
"start": "node bin/handcar.js -s example",
"build": "node esbuild.cjs",
"build:watch": "node esbuild.cjs --watch",
"watch": "npm run build && NODE_OPTIONS=--enable-source-maps bin/watch.js -d 200 -p src -p test -p bin/handcar.js -c npm run build -c npm run test -c node bin/handcar.js example",
"keygen": "openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -keyout localhost-key.pem -out localhost-cert.pem",
"test": "NODE_OPTIONS=--enable-source-maps pta",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build"
},
"keywords": [
"webserver",
"server",
"http",
"https",
"websocket",
"static",
"live",
"hot",
"reload",
"webroot"
],
"author": {
"name": "Marc Ablay"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.9",
"esbuild": "^0.15.13",
"pta": "^1.2.0",
"tslint": "^6.1.3",
"tsm": "^2.2.2",
"typescript": "^4.8.4",
"zora": "^5.1.0"
},
"dependencies": {
"commander": "^9.4.1",
"ws": "^8.11.0"
},
"files": [
"./bin/handcar.js",
"./index.js",
"./index.js.map",
"./src/templates/error.html"
],
"typings": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mablay/handcar.git"
}
}