@summer_icicle/time-traveler 0.1.0 → 0.1.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/dist/index.js +1 -1
  2. package/package.json +5 -4
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ const program = new Command();
7
7
  program
8
8
  .name("time-traveler")
9
9
  .description("Turn your Git history into music")
10
- .version("0.1.0");
10
+ .version("0.1.1");
11
11
  registerAnalyzeCommand(program);
12
12
  registerExportCommand(program);
13
13
  registerPlayCommand(program);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@summer_icicle/time-traveler",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A command-line tool that turns Git history into music",
5
5
  "type": "module",
6
6
  "bin": {
7
- "time-traveler": "./dist/index.js"
7
+ "time-traveler": "dist/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist",
@@ -18,7 +18,8 @@
18
18
  "typecheck": "tsc --noEmit",
19
19
  "test": "vitest run",
20
20
  "lint": "eslint .",
21
- "prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build" },
21
+ "prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build"
22
+ },
22
23
  "repository": {
23
24
  "type": "git",
24
25
  "url": "git+https://github.com/amanogawa01/time-traveler.git"
@@ -56,4 +57,4 @@
56
57
  "allowScripts": {
57
58
  "esbuild@0.28.2": true
58
59
  }
59
- }
60
+ }