@orkg/scidquest 1.0.4 → 1.0.5
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/README.md +15 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,19 +8,21 @@ ScidQuest provides a reusable UI and workflow foundation for extracting structur
|
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
- [SciD-QuESt: From Scientific Documents to Knowledge](#scid-quest-from-scientific-documents-to-knowledge)
|
|
12
|
+
- [Table of Contents](#table-of-contents)
|
|
13
|
+
- [About](#about)
|
|
14
|
+
- [Key Features](#key-features)
|
|
15
|
+
- [Installation](#installation)
|
|
16
|
+
- [Quick Start](#quick-start)
|
|
17
|
+
- [Configuration](#configuration)
|
|
18
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
19
|
+
- [Development](#development)
|
|
20
|
+
- [Project Structure](#project-structure)
|
|
21
|
+
- [License](#license)
|
|
20
22
|
|
|
21
23
|
## About
|
|
22
24
|
|
|
23
|
-
ScidQuest is distributed as an npm package: `@
|
|
25
|
+
ScidQuest is distributed as an npm package: `@orkg/scidquest`.
|
|
24
26
|
|
|
25
27
|
It is intended for teams building research tooling that requires:
|
|
26
28
|
|
|
@@ -48,13 +50,13 @@ It is intended for teams building research tooling that requires:
|
|
|
48
50
|
Install the package with npm:
|
|
49
51
|
|
|
50
52
|
```bash
|
|
51
|
-
npm install @
|
|
53
|
+
npm install @orkg/scidquest
|
|
52
54
|
```
|
|
53
55
|
|
|
54
56
|
Import the published stylesheet in your application entrypoint:
|
|
55
57
|
|
|
56
58
|
```ts
|
|
57
|
-
import "@
|
|
59
|
+
import "@orkg/scidquest/dist/contribute-standalone.css";
|
|
58
60
|
```
|
|
59
61
|
|
|
60
62
|
[(back to top)](#table-of-contents)
|
|
@@ -66,7 +68,7 @@ Basic package usage:
|
|
|
66
68
|
```tsx
|
|
67
69
|
import React from "react";
|
|
68
70
|
import { createRoot } from "react-dom/client";
|
|
69
|
-
import "@
|
|
71
|
+
import "@orkg/scidquest/dist/contribute-standalone.css";
|
|
70
72
|
import App from "./App";
|
|
71
73
|
|
|
72
74
|
createRoot(document.getElementById("root")!).render(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkg/scidquest",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "SciD-QuESt: From Scientific Documents to Knowledge - Questionnaire-Based Extraction and Structuring of Knowledge in the Open Research Knowledge Graph with LLMs and Human Validation",
|