@orkg/scidquest 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # ScidQuest
1
+ # SciD-QuESt: From Scientific Documents to Knowledge
2
+
3
+ ![SciD-QuESt Logo](./dist/assets/logo.png)
2
4
 
3
5
  _An AI-assisted React library for structured research-paper analysis workflows._
4
6
 
Binary file
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@orkg/scidquest",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
- "description": "Standalone research paper contribution and analysis tool",
5
+ "license": "MIT",
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",
6
7
  "main": "./dist/scidquest.es.js",
7
8
  "module": "./dist/scidquest.es.js",
8
9
  "types": "./dist/index.d.ts",
@@ -15,11 +16,12 @@
15
16
  "import": "./dist/scidquest.es.js",
16
17
  "default": "./dist/scidquest.es.js"
17
18
  },
19
+ "./assets/logo.png": "./dist/assets/logo.png",
18
20
  "./dist/contribute-standalone.css": "./dist/contribute-standalone.css"
19
21
  },
20
22
  "scripts": {
21
23
  "dev": "vite",
22
- "build": "tsc && vite build",
24
+ "build": "tsc && vite build && node ./scripts/copy-logo.mjs",
23
25
  "preview": "vite preview",
24
26
  "prepublishOnly": "npm run build"
25
27
  },