@jeromefitz/notion 3.3.6 → 3.3.7

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 (1) hide show
  1. package/package.json +21 -28
package/package.json CHANGED
@@ -1,64 +1,57 @@
1
1
  {
2
+ "private": false,
3
+ "license": "MIT",
4
+ "version": "3.3.7",
2
5
  "name": "@jeromefitz/notion",
3
- "version": "3.3.6",
4
6
  "description": "Notion: Custom Client for jeromefitzgerald.com",
5
7
  "author": {
6
8
  "name": "Jerome Fitzgerald",
7
9
  "email": "j@jeromefitzgerald.com",
8
10
  "url": "https://jeromefitzgerald.com"
9
11
  },
12
+ "repository": "jeromefitz/packages.git",
13
+ "publishConfig": {
14
+ "registry": "https://registry.npmjs.org/"
15
+ },
10
16
  "keywords": [
11
- "notion",
12
17
  "next",
13
- "next.js"
18
+ "next.js",
19
+ "notion"
14
20
  ],
15
- "license": "MIT",
16
- "repository": {
17
- "type": "git",
18
- "url": "ssh://git@github.com/jeromefitz/packages.git",
19
- "directory": "packages/notion"
20
- },
21
21
  "engines": {
22
22
  "node": ">=16"
23
23
  },
24
- "publishConfig": {
25
- "registry": "https://registry.npmjs.org/"
26
- },
27
- "private": false,
24
+ "type": "module",
25
+ "main": "./index.cjs",
26
+ "module": "./index.js",
27
+ "typings": "./index.d.ts",
28
+ "sideEffects": false,
28
29
  "scripts": {
29
30
  "build": "tsup-node",
30
- "dev": "tsup-node --watch",
31
- "---": "",
32
31
  "clean": "rm -rf .turbo && rm -rf dist",
33
32
  "clean:install": "pnpm run clean && rm -rf node_modules",
34
33
  "copy": "mkdir -p ./dist && ./scripts/copy.sh",
35
- "--- ": "",
34
+ "dev": "tsup-node --watch",
35
+ "format:lint": "pnpm run lint:eslint --fix && pnpm run format:prettier --write",
36
+ "format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
37
+ "lint": "pnpm run format:prettier --check && pnpm run lint:eslint",
36
38
  "lint:eslint": "eslint ./src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
37
- "lint:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
38
- "lint": "pnpm run lint:prettier --check && pnpm run lint:eslint",
39
- "lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
40
- "--- ": "",
41
39
  "semantic-release": "semantic-release"
42
40
  },
43
41
  "dependencies": {
44
42
  "@notionhq/client": "2.2.0",
45
- "date-fns": "2.29.2",
43
+ "date-fns": "2.29.3",
46
44
  "date-fns-tz": "1.3.7",
47
45
  "github-slugger": "1.4.0"
48
46
  },
49
47
  "devDependencies": {
50
48
  "@jeromefitz/utils": "workspace:*",
51
49
  "@types/github-slugger": "1.3.0",
52
- "@types/lodash": "4.14.184",
50
+ "@types/lodash": "4.14.185",
53
51
  "lodash": "4.17.21"
54
52
  },
55
53
  "peerDependencies": {
56
54
  "@jeromefitz/utils": "^2.1.0",
57
55
  "lodash": "^4.17.21"
58
- },
59
- "type": "module",
60
- "sideEffects": false,
61
- "typings": "./index.d.ts",
62
- "main": "./index.cjs",
63
- "module": "./index.js"
56
+ }
64
57
  }