mirror of
https://github.com/0xbow-io/privacy-pools-core.git
synced 2026-01-09 17:37:58 -05:00
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "@privacy-pool-core/relayer",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "A simple note relayer",
|
|
"license": "Apache-2.0",
|
|
"author": "Wonderland",
|
|
"type": "module",
|
|
"main": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"directories": {
|
|
"src": "src"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"!**/*.tsbuildinfo"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"start": "node ./dist/src/index.js",
|
|
"build:start": "yarn build && yarn start",
|
|
"start:ts": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
|
|
"check-types": "tsc --noEmit -p ./tsconfig.json",
|
|
"clean": "rm -rf dist/",
|
|
"format": "prettier --check \"{src,test}/**/*.{js,ts,json}\"",
|
|
"format:fix": "prettier --write \"{src,test}/**/*.{js,ts,json}\"",
|
|
"lint": "eslint \"{src,test}/**/*.{js,ts,json}\"",
|
|
"lint:fix": "eslint \"{src,test}/**/*.{js,ts,json}\" --fix",
|
|
"test": "vitest run --config vitest.config.ts --passWithNoTests",
|
|
"test:cov": "vitest run --config vitest.config.ts --coverage",
|
|
"docker:build": "cd ../circuits && yarn present && cd ../relayer && docker-compose build --no-cache",
|
|
"docker:run": "docker-compose up"
|
|
},
|
|
"dependencies": {
|
|
"@0xbow/privacy-pools-core-sdk": "0.1.17",
|
|
"@uniswap/v3-sdk": "^3.25.2",
|
|
"ajv": "8.17.1",
|
|
"body-parser": "1.20.3",
|
|
"cors": "^2.8.5",
|
|
"express": "4.21.2",
|
|
"sqlite": "5.1.1",
|
|
"sqlite3": "5.1.7",
|
|
"viem": "2.22.14",
|
|
"zod": "3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "5.0.0"
|
|
}
|
|
}
|