@6missedcalls/notion-cli 0.1.0 → 0.1.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/dist/cli.js +0 -0
  2. package/package.json +9 -8
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@6missedcalls/notion-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.4",
4
4
  "description": "Fast Notion CLI for pages, databases, and blocks",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,6 +13,13 @@
13
13
  "README.md",
14
14
  "LICENSE"
15
15
  ],
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "dev": "tsx src/cli.ts",
19
+ "notion": "pnpm run build && node dist/cli.js",
20
+ "test": "vitest run",
21
+ "prepublishOnly": "pnpm run build && pnpm test"
22
+ },
16
23
  "repository": {
17
24
  "type": "git",
18
25
  "url": "git+https://github.com/6missedcalls/notion-cli.git"
@@ -46,11 +53,5 @@
46
53
  },
47
54
  "engines": {
48
55
  "node": ">=22"
49
- },
50
- "scripts": {
51
- "build": "tsc",
52
- "dev": "tsx src/cli.ts",
53
- "notion": "pnpm run build && node dist/cli.js",
54
- "test": "vitest run"
55
56
  }
56
- }
57
+ }