notion-github 0.2.0 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notion-github",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "GitHub and Notion integration for PR automation",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -19,18 +19,18 @@
19
19
  },
20
20
  "license": "MIT",
21
21
  "devDependencies": {
22
- "@types/node": "^16.0.0",
22
+ "@types/node": "^16.18.124",
23
23
  "tsup": "^8.0.0",
24
24
  "typescript": "^5.0.0"
25
25
  },
26
26
  "dependencies": {
27
27
  "@changesets/cli": "^2.27.11",
28
28
  "@notionhq/client": "^2.0.0",
29
- "@octokit/rest": "^19.0.0",
30
- "commander": "^11.0.0"
29
+ "@octokit/rest": "^19.0.13",
30
+ "commander": "^11.0.0",
31
+ "dotenv": "^16.4.7"
31
32
  },
32
33
  "bin": {
33
- "pr-cli": "dist/cli.cjs"
34
- },
35
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
34
+ "pr-cli": "dist/cli.js"
35
+ }
36
36
  }
package/dist/index.cjs DELETED
@@ -1,31 +0,0 @@
1
- #!/usr/bin/env node
2
- "use strict";
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: true });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from))
14
- if (!__hasOwnProp.call(to, key) && key !== except)
15
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
- }
17
- return to;
18
- };
19
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
-
21
- // src/index.ts
22
- var index_exports = {};
23
- __export(index_exports, {
24
- a: () => a
25
- });
26
- module.exports = __toCommonJS(index_exports);
27
- var a = "hello";
28
- // Annotate the CommonJS export names for ESM import in node:
29
- 0 && (module.exports = {
30
- a
31
- });
package/dist/index.d.mts DELETED
@@ -1,3 +0,0 @@
1
- declare const a = "hello";
2
-
3
- export { a };
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- declare const a = "hello";
2
-
3
- export { a };
package/dist/index.esm DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // src/index.ts
4
- var a = "hello";
5
- export {
6
- a
7
- };