snipetype 0.0.3 → 0.0.4

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/bin/snipetype +1 -1
  2. package/package.json +6 -6
package/bin/snipetype CHANGED
@@ -15,7 +15,7 @@ function getBinaryPath() {
15
15
 
16
16
  if (!pkg) {
17
17
  console.error(`snipetype: Unsupported platform: ${platform}`);
18
- console.error("Please open an issue at https://github.com/snipeship/tuityper/issues");
18
+ console.error("Please open an issue at https://github.com/snipeship/snipetype/issues");
19
19
  process.exit(1);
20
20
  }
21
21
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "snipetype",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "A terminal typing test",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/snipeship/tuityper"
8
+ "url": "https://github.com/snipeship/snipetype"
9
9
  },
10
10
  "bin": {
11
11
  "snipetype": "bin/snipetype"
@@ -14,9 +14,9 @@
14
14
  "postinstall": "node install.js"
15
15
  },
16
16
  "optionalDependencies": {
17
- "@snipetype/darwin-arm64": "0.0.3",
18
- "@snipetype/darwin-x64": "0.0.3",
19
- "@snipetype/linux-arm64": "0.0.3",
20
- "@snipetype/linux-x64": "0.0.3"
17
+ "@snipetype/darwin-arm64": "0.0.4",
18
+ "@snipetype/darwin-x64": "0.0.4",
19
+ "@snipetype/linux-arm64": "0.0.4",
20
+ "@snipetype/linux-x64": "0.0.4"
21
21
  }
22
22
  }