diff --git a/LICENSE b/LICENSE index 7bc6ddd..9401734 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Serenity Notes +Copyright (c) 2023 Naisho GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bin/build.js b/bin/build.js index 2e2350e..86d1869 100644 --- a/bin/build.js +++ b/bin/build.js @@ -13,9 +13,11 @@ shell.rm("build/cjs/.gitignore"); const packageJson = `{ "name": "opaque", "collaborators": [ - "Stefan Oestreicher " + "Stefan Oestreicher ", + "Nik Graf " ], "version": "${version}", + "license" : "MIT", "files": [ "esm/opaque_bg.wasm", "esm/opaque_bg.d.ts", @@ -35,3 +37,6 @@ const packageJson = `{ `; new shell.ShellString(packageJson).to("./build/package.json"); + +shell.cp("README.md", "build/README.md"); +shell.cp("LICENSE", "build/LICENSE");