@orkg/scidquest 1.0.0 → 1.0.2
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 +3 -1
- package/dist/assets/logo.png +0 -0
- package/dist/contribute-standalone.css +1 -0
- package/dist/scidquest.es.js +20392 -19800
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkg/scidquest",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"
|
|
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 && node ./scripts/copy-css.mjs",
|
|
23
25
|
"preview": "vite preview",
|
|
24
26
|
"prepublishOnly": "npm run build"
|
|
25
27
|
},
|