-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 983 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
{
"name": "@edfus/file-server",
"version": "1.2.8",
"description": "A LAN server with auth, upload and multithreaded download",
"bin": {
"serve": "./bin/cmd.mjs"
},
"main": "build/file-server.js",
"module": "file-server.mjs",
"types": "file-server.d.ts",
"exports": {
".": {
"node": {
"require": "./build/file-server.js",
"import": "./file-server.mjs"
},
"default": "./file-server.mjs"
},
"./build/": "./build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edfus/file-server.git"
},
"scripts": {
"serve": "node ./bin/cmd.mjs",
"build": "node build/build.mjs",
"prepare": "npm run build",
"test": "why-is-node-running ./bin/cmd.mjs"
},
"keywords": [
"http-server",
"static",
"local",
"koa"
],
"author": "edfus",
"license": "ISC",
"dependencies": {
"prompts": "^2.4.0"
},
"devDependencies": {
"stream-editor": "^1.9.0"
}
}