@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.
Files changed (2) hide show
  1. package/dist/server.js.map +0 -0
  2. package/package.json +57 -56
File without changes
package/package.json CHANGED
@@ -1,57 +1,58 @@
1
1
  {
2
- "name": "@node-cli/static-server",
3
- "version": "4.1.7",
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
- "bin": "dist/server.js",
16
- "files": [
17
- "dist",
18
- "README.md"
19
- ],
20
- "engines": {
21
- "node": ">=22"
22
- },
23
- "scripts": {
24
- "build": "npm-run-all clean build:types build:js build:barrel",
25
- "build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
26
- "build:js": "swc --strip-leading-paths --source-maps --out-dir dist src --copy-files",
27
- "build:types": "tsc",
28
- "clean": "rimraf dist types coverage",
29
- "comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
30
- "lint": "biome lint src",
31
- "lint:fix": "biome check src --write --no-errors-on-unmatched",
32
- "watch": "swc --strip-leading-paths --watch --out-dir dist src"
33
- },
34
- "dependencies": {
35
- "@fastify/caching": "9.0.4",
36
- "@fastify/compress": "9.2.0",
37
- "@fastify/cors": "11.3.0",
38
- "@fastify/static": "10.1.3",
39
- "@node-cli/logger": "2.1.0",
40
- "@node-cli/parser": "3.1.0",
41
- "fastify": "5.11.3",
42
- "fastify-plugin": "6.0.0",
43
- "fs-extra": "11.4.0",
44
- "kleur": "4.1.5",
45
- "open": "11.0.0",
46
- "pino-pretty": "13.1.3",
47
- "portfinder": "1.0.38"
48
- },
49
- "publishConfig": {
50
- "access": "public"
51
- },
52
- "devDependencies": {
53
- "@vitest/coverage-v8": "4.1.10",
54
- "vitest": "4.1.10"
55
- },
56
- "gitHead": "7c19519b6c044830bcbd0f805fad75de9a6a4aa8"
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
+ }