-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "lnchat",
"version": "2.0.0",
"description": "Zero-config terminal messenger for LAN networks",
"main": "dist/lnchat.js",
"bin": {
"lnchat": "./dist/lnchat.js"
},
"author": {
"name": "Anish Shekh",
"url": "https://github.com/anishhs-gh"
},
"repository": {
"type": "git",
"url": "https://github.com/anishhs-gh/lnchat.git"
},
"homepage": "https://github.com/anishhs-gh/lnchat#readme",
"bugs": {
"url": "https://github.com/anishhs-gh/lnchat/issues"
},
"files": [
"dist/",
"README.md"
],
"keywords": [
"lan",
"chat",
"terminal",
"cli",
"p2p",
"messenger",
"network",
"local"
],
"scripts": {
"start": "node src/index.js",
"lint": "find src tests -name '*.js' -exec node --check {} \\;",
"test": "node --test tests/*.test.js",
"build": "esbuild src/index.js --bundle --platform=node --minify --banner:js='#!/usr/bin/env node' --outfile=dist/lnchat.js && chmod +x dist/lnchat.js",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=18.0.0"
},
"license": "lnchat-SAL-1.0",
"devDependencies": {
"esbuild": "^0.25.0"
}
}