eyereasoner 1.0.1 → 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/package.json +15 -6
package/README.md
CHANGED
|
@@ -21,9 +21,11 @@ async function main() {
|
|
|
21
21
|
main();
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
Here the inputs and outputs are both arrays of RDF/JS Quads
|
|
25
|
+
|
|
24
26
|
## Advanced usage
|
|
25
27
|
|
|
26
|
-
To have more granular control
|
|
28
|
+
To have more granular control one can also use this module as follows
|
|
27
29
|
|
|
28
30
|
```ts
|
|
29
31
|
import { SWIPL, loadEye } from 'eyereasoner';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eyereasoner",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Distributing the [EYE](https://github.com/josd/eye) reasoner for browser and node using WebAssembly.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.js",
|
|
@@ -16,20 +16,29 @@
|
|
|
16
16
|
"test": "jest",
|
|
17
17
|
"lint": "eslint lib/**/*.ts __tests__/* scripts/* --ext .ts",
|
|
18
18
|
"lint:fix": "eslint lib/**/*.ts __tests__/* scripts/* --ext .ts --fix",
|
|
19
|
-
"build": "tsc",
|
|
20
|
-
"prepare": "npm run
|
|
19
|
+
"build": "npm run eye:prepare && tsc",
|
|
20
|
+
"prepare": "npm run build",
|
|
21
21
|
"semantic-release": "semantic-release",
|
|
22
22
|
"eye:fetch": "ts-node scripts/fetch-eye",
|
|
23
23
|
"eye:build": "rollup --config rollup.config.mjs",
|
|
24
24
|
"eye:prepare": "npm run eye:fetch && npm run eye:build",
|
|
25
|
-
"eye:update": "ts-node scripts/update"
|
|
26
|
-
"postinstall": "npm run eye:prepare"
|
|
25
|
+
"eye:update": "ts-node scripts/update"
|
|
27
26
|
},
|
|
28
27
|
"repository": {
|
|
29
28
|
"type": "git",
|
|
30
29
|
"url": "https://github.com/eyereasoner/eye-js.git"
|
|
31
30
|
},
|
|
32
|
-
"keywords": [
|
|
31
|
+
"keywords": [
|
|
32
|
+
"eye",
|
|
33
|
+
"eye-js",
|
|
34
|
+
"reasoning",
|
|
35
|
+
"reasoner",
|
|
36
|
+
"rdf",
|
|
37
|
+
"owl",
|
|
38
|
+
"semantic",
|
|
39
|
+
"surfaces",
|
|
40
|
+
"solid"
|
|
41
|
+
],
|
|
33
42
|
"author": "Jesse Wright <https://github.com/jeswr/>",
|
|
34
43
|
"contributors": [
|
|
35
44
|
"Jesse Wright <https://github.com/jeswr/>",
|