term-survivors 0.4.0 → 0.4.2

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/README.md +1 -1
  2. package/package.json +10 -7
package/README.md CHANGED
@@ -47,7 +47,7 @@ term-survivors
47
47
 
48
48
  ```bash
49
49
  term-survivors --help
50
- term-survivors 0.4.0
50
+ term-survivors 0.4.2
51
51
 
52
52
  USAGE:
53
53
  term-survivors [COMMAND]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "term-survivors",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "A Vampire Survivors-like roguelike shooter that runs in the terminal",
5
5
  "keywords": [
6
6
  "game",
@@ -12,7 +12,7 @@
12
12
  "license": "MIT",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://kimulaco@github.com/kimulaco/term-survivors.git"
15
+ "url": "git+https://github.com/kimulaco/term-survivors.git"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">=20"
@@ -24,11 +24,14 @@
24
24
  "bin": {
25
25
  "term-survivors": "index.js"
26
26
  },
27
+ "publishConfig": {
28
+ "provenance": true
29
+ },
27
30
  "optionalDependencies": {
28
- "@term-survivors/darwin-arm64": "0.4.0",
29
- "@term-survivors/darwin-x64": "0.4.0",
30
- "@term-survivors/linux-x64": "0.4.0",
31
- "@term-survivors/linux-arm64": "0.4.0",
32
- "@term-survivors/win32-x64": "0.4.0"
31
+ "@term-survivors/darwin-arm64": "0.4.2",
32
+ "@term-survivors/darwin-x64": "0.4.2",
33
+ "@term-survivors/linux-x64": "0.4.2",
34
+ "@term-survivors/linux-arm64": "0.4.2",
35
+ "@term-survivors/win32-x64": "0.4.2"
33
36
  }
34
37
  }