eyereasoner 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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +15 -6
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  Distributing the [EYE](https://github.com/josd/eye) reasoner for browser and node using WebAssembly.
3
3
 
4
4
  [![GitHub license](https://img.shields.io/github/license/eyereasoner/eye-js.svg)](https://github.com/eyereasoner/eye-js/blob/master/LICENSE)
5
- [![npm version](https://img.shields.io/npm/v/@eyereasoner/eye-js.svg)](https://www.npmjs.com/package/@eyereasoner/eye-js)
5
+ [![npm version](https://img.shields.io/npm/v/eyereasoner.svg)](https://www.npmjs.com/package/eyereasoner)
6
6
  [![build](https://img.shields.io/github/workflow/status/eyereasoner/eye-js/Node.js%20CI)](https://github.com/eyereasoner/eye-js/tree/main/)
7
7
  [![Dependabot](https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot)](https://dependabot.com/)
8
8
  [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
@@ -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 once can also use this module as follows
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.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 eye:prepare && npm run build",
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/>",