Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
{
|
|
"name": "nextgraph-react",
|
|
"version": "0.1.1-alpha.1",
|
|
"description": "A React library for LDO and NextGraph",
|
|
"type": "module",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/esm/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && npm run build:esm",
|
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
"build:esm": "tsc --project tsconfig.esm.json",
|
|
"test": "vitest run --coverage",
|
|
"prepublishOnly": " npm run build",
|
|
"lint": "eslint src/** --fix --no-error-on-unmatched-pattern"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.nextgraph.org/NextGraph/nextgraph-rs"
|
|
},
|
|
"collaborators": [
|
|
"Niko PLP <niko@nextgraph.org>"
|
|
],
|
|
"license": "MIT/Apache-2.0",
|
|
"homepage": "https://nextgraph.org",
|
|
"author": "Niko PLP",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.26.10",
|
|
"@babel/preset-env": "^7.26.9",
|
|
"@ldo/rdf-utils": "^1.0.0-alpha.11",
|
|
"@rdfjs/types": "^1.0.1",
|
|
"@testing-library/react": "^14.1.2",
|
|
"start-server-and-test": "^2.0.3",
|
|
"whatwg-fetch": "^3.6.20",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@ldo/connected": "^1.0.0-alpha.15",
|
|
"@ldo/connected-nextgraph": "^1.0.0-alpha.15",
|
|
"nextgraphweb": "^0.1.1-alpha.4",
|
|
"@ldo/react": "^1.0.0-alpha.15",
|
|
"@rdfjs/data-model": "^1.2.0",
|
|
"cross-fetch": "^3.1.6"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|
|
|