owlish 0.14.0

OWL 2 implementation with wasm support and turtle parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
const fs = require('fs') // replace with import fs from 'fs'; if you need
const packageFileContent = fs.readFileSync('./pkg/package.json', 'utf-8')
const packageJSON = JSON.parse(packageFileContent)
packageJSON.type = 'module'
packageJSON.main = packageJSON.module
packageJSON.exports = './' + packageJSON.module
packageJSON.dependencies = { typescript: '^4.8.3' }
packageJSON.scripts = { tsc: 'tsc owlish.d.ts' }
fs.writeFileSync(
    './pkg/package.json',
    JSON.stringify(packageJSON, null, 2),
    'utf-8'
)