Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
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.
19 lines
573 B
19 lines
573 B
#! /usr/bin/env node
|
|
|
|
const fs = require("node:fs");
|
|
const pkg = JSON.parse(fs.readFileSync("./pkg/package.json"));
|
|
pkg.name = "oxigraph";
|
|
pkg.main = "node.js";
|
|
pkg.browser = "web.js";
|
|
pkg.files = ["*.{js,wasm,d.ts}"];
|
|
pkg.homepage = "https://github.com/oxigraph/oxigraph/tree/main/js";
|
|
pkg.bugs = {
|
|
url: "https://github.com/oxigraph/oxigraph/issues",
|
|
};
|
|
pkg.collaborators = undefined;
|
|
pkg.repository = {
|
|
type: "git",
|
|
url: "https://github.com/oxigraph/oxigraph.git",
|
|
directory: "js",
|
|
};
|
|
fs.writeFileSync("./pkg/package.json", JSON.stringify(pkg, null, 2));
|
|
|