@linkurious/ogma-annotations-react 1.1.12 → 1.1.14
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/LICENSE +201 -0
- package/Readme.md +47 -0
- package/dist/index.js +20 -20
- package/dist/index.mjs +1323 -1770
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linkurious/ogma-annotations-react",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "A react component to add ogma annotations with react",
|
|
5
5
|
"main": "dist/index.mjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
|
|
30
30
|
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
|
|
31
31
|
"bump:major": "bump2version major && npm version --no-git-tag-version major",
|
|
32
|
-
"docs:build": "vite build -c web/vite.config.
|
|
32
|
+
"docs:build": "vite build -c web/vite.config.mts",
|
|
33
33
|
"postdocs:build": "bash scripts/postdocs.sh",
|
|
34
34
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
35
35
|
"lint:ci": "eslint -f checkstyle -o reports/checkstyle.xml --ext ts,tsx src"
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"author": "Linkurious SAS",
|
|
49
49
|
"license": "Apache-2.0",
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@linkurious/ogma": ">=4.5.6",
|
|
52
|
-
"@linkurious/ogma-annotations": "^1.1.
|
|
51
|
+
"@linkurious/ogma": ">=4.5.6 || ^5.0.0",
|
|
52
|
+
"@linkurious/ogma-annotations": "^1.1.14",
|
|
53
53
|
"@linkurious/ogma-react": ">=4.6.1",
|
|
54
54
|
"react": "18.2.0"
|
|
55
55
|
},
|