Prepare package to self-host in Gitea npm registry

This commit is contained in:
Theo 2023-09-12 03:05:43 -07:00
parent e3c54ea818
commit d96a6adc1a
5 changed files with 2142 additions and 2211 deletions

0
.npmrc Normal file

1
.nvmrc Normal file

@ -0,0 +1 @@
v14.21.3

4340
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,8 +1,8 @@
{
"name": "fixed-merkle-tree",
"name": "@tornado/fixed-merkle-tree",
"version": "0.6.1",
"description": "Fixed depth merkle tree implementation with sequential inserts",
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
"repository": "https://git.tornado.ws/tornado-packages/fixed-merkle-tree.git",
"main": "src/merkleTree.js",
"scripts": {
"test": "mocha",
@ -19,8 +19,8 @@
"src/*"
],
"dependencies": {
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#869181cfaf7526fe8972073d31655493a04326d5",
"circomlib": "git+https://github.com/tornadocash/circomlib.git#5beb6aee94923052faeecea40135d45b6ce6172c"
"@tornado/circomlib": "0.0.21",
"@tornado/snarkjs": "0.1.20"
},
"devDependencies": {
"babel-eslint": "^10.1.0",

@ -1,3 +1,3 @@
const { mimcsponge } = require('circomlib')
const { bigInt } = require('snarkjs')
const { mimcsponge } = require('@tornado/circomlib')
const { bigInt } = require('@tornado/snarkjs')
module.exports = (left, right) => mimcsponge.multiHash([bigInt(left), bigInt(right)]).toString()