mirror of https://codeberg.org/pzp/pzp-set.git
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "ppppp-set",
|
|
"version": "1.0.0",
|
|
"description": "Set data structure over append-only logs with pruning",
|
|
"author": "Andre Staltz <contact@staltz.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/staltz/ppppp-set",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:staltz/ppppp-set.git"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"*.js",
|
|
"lib/*.js",
|
|
"lib/*.d.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"require": "./lib/index.js"
|
|
}
|
|
},
|
|
"type": "commonjs",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"bs58": "^5.0.0",
|
|
"c8": "7",
|
|
"obz": "~1.1.0",
|
|
"ppppp-db": "github:staltz/ppppp-db",
|
|
"ppppp-caps": "github:staltz/ppppp-caps",
|
|
"ppppp-keypair": "github:staltz/ppppp-keypair",
|
|
"rimraf": "^4.4.0",
|
|
"secret-stack": "~8.0.0",
|
|
"secret-handshake-ext": "0.0.10",
|
|
"ssb-box": "^1.0.1",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"scripts": {
|
|
"clean-check": "tsc --build --clean",
|
|
"prepublishOnly": "npm run clean-check && tsc --build",
|
|
"postpublish": "npm run clean-check",
|
|
"test": "npm run clean-check && 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"
|
|
}
|
|
}
|
|
}
|