@node-cli/static-server 4.1.7 → 4.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.js.map +0 -0
- package/package.json +57 -56
package/dist/server.js.map
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,58 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@node-cli/static-server",
|
|
3
|
+
"version": "4.1.9",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": "Arno Versini",
|
|
6
|
+
"description": "A simple, zero-configuration, command line HTTP server to serve static files locally",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/versini-org/node-cli.git",
|
|
10
|
+
"directory": "packages/static-server"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": "./dist/server.js",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=22"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@fastify/caching": "9.0.4",
|
|
24
|
+
"@fastify/compress": "9.2.0",
|
|
25
|
+
"@fastify/cors": "11.3.0",
|
|
26
|
+
"@fastify/static": "10.1.3",
|
|
27
|
+
"fastify": "5.12.1",
|
|
28
|
+
"fastify-plugin": "6.0.0",
|
|
29
|
+
"fs-extra": "11.4.0",
|
|
30
|
+
"kleur": "4.1.5",
|
|
31
|
+
"open": "11.0.1",
|
|
32
|
+
"pino-pretty": "13.1.3",
|
|
33
|
+
"portfinder": "1.0.38",
|
|
34
|
+
"@node-cli/logger": "2.1.1",
|
|
35
|
+
"@node-cli/parser": "3.1.1"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
42
|
+
"vitest": "4.1.11"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "npm-run-all clean build:types build:js build:barrel",
|
|
46
|
+
"build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
|
|
47
|
+
"build:js": "swc --strip-leading-paths --source-maps --out-dir dist src --copy-files",
|
|
48
|
+
"build:types": "tsc",
|
|
49
|
+
"clean": "rimraf dist types coverage",
|
|
50
|
+
"comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
|
|
51
|
+
"lint": "biome lint src",
|
|
52
|
+
"lint:fix": "biome check src --write --no-errors-on-unmatched",
|
|
53
|
+
"watch": "swc --strip-leading-paths --watch --out-dir dist src"
|
|
54
|
+
},
|
|
55
|
+
"bin": {
|
|
56
|
+
"static-server": "dist/server.js"
|
|
57
|
+
}
|
|
58
|
+
}
|