openctf-server 1.0.0 → 1.0.1

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/__init__.py +1 -1
  2. package/package.json +9 -2
package/__init__.py CHANGED
@@ -9,4 +9,4 @@ directly from this directory (`python app.py`, `python target_app.py`,
9
9
  `python seed_challenges.py`) is unaffected either way.
10
10
  """
11
11
 
12
- __version__ = "0.1.0"
12
+ __version__ = "1.0.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openctf-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenCTF lab CTF platform server (Flask API + sandboxed target-website service), bundled as Python source with a Node launcher. Requires Python 3.10+ already installed - npm cannot install a Python runtime for you.",
5
5
  "bin": {
6
6
  "openctf-server": "bin/openctf-server.js"
@@ -21,7 +21,14 @@
21
21
  "engines": {
22
22
  "node": ">=18"
23
23
  },
24
- "keywords": ["ctf", "capture-the-flag", "security", "lab", "flask", "python"],
24
+ "keywords": [
25
+ "ctf",
26
+ "capture-the-flag",
27
+ "security",
28
+ "lab",
29
+ "flask",
30
+ "python"
31
+ ],
25
32
  "license": "MIT",
26
33
  "homepage": "https://github.com/XHiddenProjects/OpenCTF",
27
34
  "repository": {