@netzero/contracts
Version:
This template uses TypeScript.
56 lines • 1.56 kB
JSON
{
"name": "@netzero/contracts",
"version": "0.1.8",
"description": "",
"author": "",
"license": "Apache-2.0",
"keywords": [
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp"
],
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc",
"buildw": "tsc --watch",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.ts",
"testw": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix",
"deploy": "tsc && node --env-file ../../.env build/deploy.js"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.26.0",
"@netzero/circuits": "^0.0.4",
"@netzero/por_circuits": "^0.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-o1js": "^0.4.0",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"mina-attestations": "0.5.0",
"prettier": "^2.3.2",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"typescript": "^5.4.5",
"zod": "^3.24.2"
},
"peerDependencies": {
"o1js": "2.4.0"
},
"engines": {
"node": ">=18.14.0"
},
"dependencies": {
"yargs": "^17.7.2"
}
}