@jahed/sparql-engine
Version:
SPARQL query engine for servers and web browsers.
109 lines (108 loc) • 2.54 kB
JSON
{
"name": "@jahed/sparql-engine",
"version": "0.14.0",
"description": "SPARQL query engine for servers and web browsers.",
"author": "Jahed Ahmed",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jahed/sparql-engine.git"
},
"bugs": "https://github.com/jahed/sparql-engine/issues",
"funding": "https://jahed.dev/donate",
"keywords": [
"sparql",
"engine",
"query",
"graph",
"database",
"rdf",
"turtle",
"semantic",
"semantic web"
],
"type": "module",
"exports": {
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*.ts": {
"default": "./src/*.ts"
}
},
"files": [
"dist",
"src",
"AUTHORS"
],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"format": "prettier -w .",
"lint": "tsc -p tsconfig.json",
"test": "npm run test:file -- 'tests/**/*-test.ts'",
"test:file": "node --disable-warning=ExperimentalWarning --experimental-strip-types --experimental-test-isolation=none --test-timeout=5000 --test",
"version": "./scripts/version.sh"
},
"engines": {
"node": ">=22.11.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"lodash-es": "^4.17.21",
"rdf-data-factory": "^2.0.2",
"rdf-string": "^2.0.1"
},
"peerDependencies": {
"@seald-io/binary-search-tree": "^1.0.3",
"js-md5": "^0.8.3",
"lru-cache": "^11.1.0",
"sparqljs": "^3.7.3",
"rxjs": "^8.0.0-alpha.14",
"xml": "^1.0.1"
},
"peerDependenciesMeta": {
"@seald-io/binary-search-tree": {
"optional": true
},
"js-md5": {
"optional": true
},
"lru-cache": {
"optional": true
},
"rxjs": {
"optional": true
},
"xml": {
"optional": true
}
},
"devDependencies": {
"@rdfjs/types": "^2.0.1",
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node22": "^22.0.2",
"@types/chai": "^5.2.2",
"@types/chai-xml": "^0.3.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.16.5",
"@types/rdfjs__data-model": "^2.0.9",
"@types/sparqljs": "^3.1.12",
"@types/xml": "^1.0.2",
"chai": "^5.2.1",
"chai-xml": "^0.4.1",
"n3": "^0.11.3",
"prettier": "^3.6.2",
"typescript": "5.8.x",
"@seald-io/binary-search-tree": "^1.0.3",
"js-md5": "^0.8.3",
"lru-cache": "^11.1.0",
"rxjs": "^8.0.0-alpha.14",
"xml": "^1.0.1"
},
"overrides": {
"sparqljs": {
"rdf-data-factory": "$rdf-data-factory"
}
}
}