Files
the-word/cli/package.json

34 lines
831 B
JSON

{
"name": "@the-word-pse/cli",
"version": "0.2.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"bin": {
"the-word": "./dest/main.js"
},
"scripts": {
"build": "npx tsc && cp -r ./artifacts dest/artifacts",
"local": "NODE_NO_WARNINGS=1 ts-node --esm ./src/cli.ts",
"play": "./scripts/the-word.sh",
"circuits:crs": "./scripts/crs.sh",
"circuits:compile": "./scripts/compile-circuit.sh"
},
"dependencies": {
"chalk": "^5.3.0",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"snarkjs": "^0.7.1"
},
"devDependencies": {
"@types/circomlibjs": "^0.1.1",
"@types/figlet": "^1.5.6",
"@types/node": "^20.8.2",
"@types/snarkjs": "^0.7.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}