Skip to content

Commit

Permalink
feat: add package node requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
JadlionHD committed Aug 3, 2024
1 parent 2ae8bf3 commit 16f5b45
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 41 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ lib/build/**
build/**
docs/
pnpm-lock.yaml
typedoc.json
src/*
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "growtopia.js",
"version": "1.5.4",
"version": "1.5.5",
"description": "A package to create a growtopia private servers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -34,6 +34,10 @@
"host": "https://github.com/JadlionHD/growtopia.js/releases/download/",
"remote_path": "v{version}"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.1.5",
Expand All @@ -47,6 +51,6 @@
"devDependencies": {
"prebuildify": "^6.0.1",
"rimraf": "^5.0.1",
"typedoc": "^0.24.7"
"typedoc": "^0.26.5"
}
}
121 changes: 83 additions & 38 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"entryPoints": ["./src/index.ts"],
"out": "docs"
"out": "docs",
"theme": "default",
"entryPointStrategy": "expand",
"readme": "./README.md"
}

0 comments on commit 16f5b45

Please sign in to comment.