{ "name": "pzp-conductor", "version": "1.0.2", "description": "PZP manager that sets tangle goals", "author": "Andre Staltz ", "license": "MIT", "homepage": "https://codeberg.org/pzp/pzp-conductor", "repository": { "type": "git", "url": "git@codeberg.org:pzp/pzp-conductor.git" }, "type": "commonjs", "main": "index.js", "files": [ "lib/**/*" ], "exports": { ".": { "require": "./lib/index.js" } }, "engines": { "node": ">=16" }, "dependencies": { "debug": "^4.3.4" }, "devDependencies": { "@types/node": "^18.19.31", "@types/debug": "4.1.9", "bs58": "^5.0.0", "c8": "7", "pzp-caps": "^1.0.0", "pzp-db": "^1.0.4", "pzp-dict": "^1.0.1", "pzp-gc": "^1.0.0", "pzp-goals": "^1.0.1", "pzp-keypair": "^1.0.0", "pzp-set": "^1.0.1", "pzp-sync": "^1.0.4", "prettier": "^2.6.2", "pretty-quick": "^3.1.3", "rimraf": "^4.4.0", "secret-handshake-ext": "~0.0.12", "secret-stack": "~8.1.0", "ssb-box": "^1.0.1", "typescript": "^5.4.5" }, "scripts": { "clean-check": "tsc --build --clean", "prepublishOnly": "npm run clean-check && tsc --build", "postpublish": "npm run clean-check", "test": "node --test", "format-code": "prettier --write \"(lib|test)/**/*.js\"", "format-code-staged": "pretty-quick --staged --pattern \"(lib|test)/**/*.js\"", "coverage": "c8 --reporter=lcov npm run test" }, "husky": { "hooks": { "pre-commit": "npm run format-code-staged" } } }