@oml/owl 0.7.0
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 +46 -0
- package/out/index.d.ts +10 -0
- package/out/index.js +12 -0
- package/out/index.js.map +1 -0
- package/out/owl/owl-abox.d.ts +79 -0
- package/out/owl/owl-abox.js +765 -0
- package/out/owl/owl-abox.js.map +1 -0
- package/out/owl/owl-imports.d.ts +9 -0
- package/out/owl/owl-imports.js +102 -0
- package/out/owl/owl-imports.js.map +1 -0
- package/out/owl/owl-interfaces.d.ts +121 -0
- package/out/owl/owl-interfaces.js +3 -0
- package/out/owl/owl-interfaces.js.map +1 -0
- package/out/owl/owl-mapper.d.ts +80 -0
- package/out/owl/owl-mapper.js +1217 -0
- package/out/owl/owl-mapper.js.map +1 -0
- package/out/owl/owl-service.d.ts +65 -0
- package/out/owl/owl-service.js +552 -0
- package/out/owl/owl-service.js.map +1 -0
- package/out/owl/owl-shacl.d.ts +28 -0
- package/out/owl/owl-shacl.js +337 -0
- package/out/owl/owl-shacl.js.map +1 -0
- package/out/owl/owl-sparql.d.ts +71 -0
- package/out/owl/owl-sparql.js +260 -0
- package/out/owl/owl-sparql.js.map +1 -0
- package/out/owl/owl-store.d.ts +32 -0
- package/out/owl/owl-store.js +142 -0
- package/out/owl/owl-store.js.map +1 -0
- package/out/owl/owl-tbox.d.ts +98 -0
- package/out/owl/owl-tbox.js +575 -0
- package/out/owl/owl-tbox.js.map +1 -0
- package/out/owl-module.d.ts +15 -0
- package/out/owl-module.js +22 -0
- package/out/owl-module.js.map +1 -0
- package/package.json +52 -0
- package/src/index.ts +12 -0
- package/src/owl/owl-abox.ts +930 -0
- package/src/owl/owl-imports.ts +108 -0
- package/src/owl/owl-interfaces.ts +145 -0
- package/src/owl/owl-mapper.ts +1510 -0
- package/src/owl/owl-service.ts +642 -0
- package/src/owl/owl-shacl.ts +400 -0
- package/src/owl/owl-sparql.ts +317 -0
- package/src/owl/owl-store.ts +173 -0
- package/src/owl/owl-tbox.ts +727 -0
- package/src/owl-module.ts +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oml/owl",
|
|
3
|
+
"description": "The semantic web specific package",
|
|
4
|
+
"version": "0.7.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=20.10.0",
|
|
8
|
+
"npm": ">=10.2.3"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"out",
|
|
12
|
+
"src"
|
|
13
|
+
],
|
|
14
|
+
"main": "./out/index.js",
|
|
15
|
+
"module": "./out/index.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./out/index.d.ts",
|
|
19
|
+
"default": "./out/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"typesVersions": {
|
|
23
|
+
"*": {
|
|
24
|
+
".": [
|
|
25
|
+
"out/index"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"clean": "shx rm -fr *.tsbuildinfo out",
|
|
31
|
+
"build": "echo 'No build step'",
|
|
32
|
+
"build:clean": "npm run clean && npm run build",
|
|
33
|
+
"test": "vitest run"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@oml/language": "0.7.0",
|
|
37
|
+
"@comunica/query-sparql": "^5.1.3",
|
|
38
|
+
"langium": "^4.2.1",
|
|
39
|
+
"n3": "^2.0.1",
|
|
40
|
+
"rdf-validate-shacl": "^0.6.5",
|
|
41
|
+
"yaml": "^2.8.2"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/n3": "^1.26.1",
|
|
45
|
+
"langium-cli": "^4.2.0",
|
|
46
|
+
"vitest": "~3.1.3"
|
|
47
|
+
},
|
|
48
|
+
"volta": {
|
|
49
|
+
"node": "20.19.2",
|
|
50
|
+
"npm": "10.8.2"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// Copyright (c) 2026 Modelware. All rights reserved.
|
|
2
|
+
|
|
3
|
+
export * from './owl-module.js';
|
|
4
|
+
export * from './owl/owl-mapper.js';
|
|
5
|
+
export * from './owl/owl-interfaces.js';
|
|
6
|
+
export * from './owl/owl-store.js';
|
|
7
|
+
export * from './owl/owl-abox.js';
|
|
8
|
+
export * from './owl/owl-imports.js';
|
|
9
|
+
export * from './owl/owl-service.js';
|
|
10
|
+
export * from './owl/owl-sparql.js';
|
|
11
|
+
export * from './owl/owl-shacl.js';
|
|
12
|
+
export * from './owl/owl-tbox.js';
|