shipsheet 0.0.2 → 0.0.5

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 +0 -0
  2. package/package.json +21 -9
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shipsheet",
3
- "version": "0.0.2",
3
+ "version": "0.0.5",
4
4
  "description": "CLI for managing a local tasks.json ship sheet - exportable to Kanban or Google Sheets",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,13 +8,14 @@
8
8
  "shipsheet": "dist/index.js",
9
9
  "ss": "dist/index.js"
10
10
  },
11
- "scripts": {
12
- "build": "tsc",
13
- "dev": "tsc --watch",
14
- "start": "node dist/index.js",
15
- "typecheck": "tsc --noEmit"
16
- },
17
- "keywords": ["cli", "tasks", "todo", "kanban", "shipsheet", "skills"],
11
+ "keywords": [
12
+ "cli",
13
+ "tasks",
14
+ "todo",
15
+ "kanban",
16
+ "shipsheet",
17
+ "skills"
18
+ ],
18
19
  "license": "MIT",
19
20
  "repository": {
20
21
  "type": "git",
@@ -26,10 +27,21 @@
26
27
  "skill"
27
28
  ],
28
29
  "devDependencies": {
30
+ "@changesets/changelog-github": "^0.5.2",
31
+ "@changesets/cli": "^2.29.8",
29
32
  "@types/node": "^20.10.0",
30
33
  "typescript": "^5.3.0"
31
34
  },
32
35
  "dependencies": {
33
36
  "commander": "^12.0.0"
37
+ },
38
+ "scripts": {
39
+ "build": "tsc",
40
+ "dev": "tsc --watch",
41
+ "start": "node dist/index.js",
42
+ "typecheck": "tsc --noEmit",
43
+ "changeset": "changeset",
44
+ "version": "changeset version",
45
+ "release": "pnpm build && changeset publish && git push --follow-tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes -n \"[Full Changelog](https://github.com/ahmadawais/shipsheet/blob/main/CHANGELOG.md)\""
34
46
  }
35
- }
47
+ }