Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit d9a1d85

Browse files
committed
fix: update packages versions
1 parent 0b7e9b6 commit d9a1d85

File tree

2 files changed

+71
-59
lines changed

2 files changed

+71
-59
lines changed

.vscode/snippets.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
3+
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
4+
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
5+
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
6+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
7+
// Placeholders with the same ids are connected.
8+
// Example:
9+
// "Print to console": {
10+
// "scope": "javascript,typescript",
11+
// "prefix": "log",
12+
// "body": [
13+
// "console.log('$1');",
14+
// "$2"
15+
// ],
16+
// "description": "Log output to console"
17+
// }
18+
}

package.json

Lines changed: 53 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,55 @@
11
{
2-
"name": "notion-blocks-react-renderer",
3-
"version": "1.3.7",
4-
"description": "React Renderer for @notionhq/client blocks",
5-
"main": "dist/index.js",
6-
"repository": {
7-
"type": "git",
8-
"url": "https://github.com/piotrzaborow/notion-blocks-react-renderer.git"
9-
},
10-
"keywords": [
11-
"notion",
12-
"notion react renderer",
13-
"notion blocks"
14-
],
15-
"scripts": {
16-
"commit": "cz",
17-
"build": "tsc --module commonjs"
18-
},
19-
"author": "Piotr Zaborowski <piotrzaborow@gmail.com>",
20-
"license": "ISC",
21-
"peerDependecies": {
22-
"react": "^17.0.2"
23-
},
24-
"dependencies": {
25-
"react": "^17.0.2"
26-
},
27-
"devDependencies": {
28-
"@semantic-release/changelog": "^6.0.0",
29-
"@semantic-release/git": "^10.0.0",
30-
"@types/react": "^17.0.32",
31-
"commitizen": "^4.2.4",
32-
"cz-conventional-changelog": "^3.3.0",
33-
"typescript": "^4.4.4"
34-
},
35-
"publishConfig": {
36-
"registry": "https://registry.npmjs.org/"
37-
},
38-
"release": {
39-
"branches": [
40-
"main"
41-
],
42-
"plugins": [
43-
"@semantic-release/commit-analyzer",
44-
"@semantic-release/release-notes-generator",
45-
"@semantic-release/changelog",
46-
"@semantic-release/npm",
47-
"@semantic-release/git",
48-
[
49-
"@semantic-release/github",
50-
{
51-
"message": "Release <%= nextRelease.version %> - <%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %> [skip ci]\n\n<%= nextRelease.notes %>"
52-
}
53-
]
54-
]
55-
},
56-
"config": {
57-
"commitizen": {
58-
"path": "./node_modules/cz-conventional-changelog"
59-
}
60-
}
2+
"name": "notion-blocks-react-renderer",
3+
"version": "1.3.7",
4+
"description": "React Renderer for @notionhq/client blocks",
5+
"main": "dist/index.js",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/piotrzaborow/notion-blocks-react-renderer.git"
9+
},
10+
"keywords": ["notion", "notion react renderer", "notion blocks"],
11+
"scripts": {
12+
"commit": "cz",
13+
"build": "tsc --module commonjs"
14+
},
15+
"author": "Piotr Zaborowski <piotrzaborow@gmail.com>",
16+
"license": "ISC",
17+
"peerDependecies": {
18+
"react": "^17.0.2"
19+
},
20+
"dependencies": {
21+
"react": "^17.0.2"
22+
},
23+
"devDependencies": {
24+
"@semantic-release/changelog": "^6.0.1",
25+
"@semantic-release/git": "^10.0.1",
26+
"@types/react": "^17.0.39",
27+
"commitizen": "^4.2.4",
28+
"cz-conventional-changelog": "^3.3.0",
29+
"typescript": "^4.5.5"
30+
},
31+
"publishConfig": {
32+
"registry": "https://registry.npmjs.org/"
33+
},
34+
"release": {
35+
"branches": ["main"],
36+
"plugins": [
37+
"@semantic-release/commit-analyzer",
38+
"@semantic-release/release-notes-generator",
39+
"@semantic-release/changelog",
40+
"@semantic-release/npm",
41+
"@semantic-release/git",
42+
[
43+
"@semantic-release/github",
44+
{
45+
"message": "Release <%= nextRelease.version %> - <%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %> [skip ci]\n\n<%= nextRelease.notes %>"
46+
}
47+
]
48+
]
49+
},
50+
"config": {
51+
"commitizen": {
52+
"path": "./node_modules/cz-conventional-changelog"
53+
}
54+
}
6155
}

0 commit comments

Comments
 (0)