notion-batch-apply-template 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.
Files changed (2) hide show
  1. package/.github/FUNDING.yml +15 -0
  2. package/package.json +12 -2
@@ -0,0 +1,15 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: ngmy
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12
+ polar: # Replace with a single Polar username
13
+ buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
14
+ thanks_dev: # Replace with a single thanks.dev username
15
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
package/package.json CHANGED
@@ -1,17 +1,27 @@
1
1
  {
2
2
  "name": "notion-batch-apply-template",
3
- "type": "module",
4
- "version": "0.2.0",
3
+ "version": "0.2.1",
5
4
  "description": "This Node.js script allows you to batch apply a Notion template to all existing pages within a specific database.",
6
5
  "keywords": [
7
6
  "notion",
8
7
  "cli",
9
8
  "batch-apply-template"
10
9
  ],
10
+ "homepage": "https://github.com/ngmy/notion-batch-apply-template#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/ngmy/notion-batch-apply-template/issues"
13
+ },
11
14
  "license": "MIT",
15
+ "author": "Yuta Nagamiya <y.nagamiya@gmail.com> (https://ngmy.github.io/)",
16
+ "funding": "https://github.com/sponsors/ngmy",
17
+ "type": "module",
12
18
  "bin": {
13
19
  "notion-batch-apply-template": "batch-apply-template.js"
14
20
  },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/ngmy/notion-batch-apply-template.git"
24
+ },
15
25
  "dependencies": {
16
26
  "@notionhq/client": "^5.11.1"
17
27
  }