mirror of https://codeberg.org/pzp/pzp-keypair.git
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "ppppp-keypair",
|
|
"version": "0.0.1",
|
|
"description": "Keyfile operations for PPPPP",
|
|
"homepage": "https://github.com/staltz/ppppp-keypair",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/staltz/ppppp-keypair.git"
|
|
},
|
|
"author": "Andre 'Staltz' Medeiros <contact@staltz.com>",
|
|
"license": "MIT",
|
|
"type": "commonjs",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": "./lib/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"b4a": "^1.6.4",
|
|
"bs58": "^5.0.0",
|
|
"sodium-universal": "^4.0.0",
|
|
"mkdirp": "~3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/b4a": "^1.6.0",
|
|
"@types/node": "^20.2.5",
|
|
"c8": "^7.11.0",
|
|
"husky": "^4.3.0",
|
|
"prettier": "^2.6.2",
|
|
"pretty-quick": "^3.1.3",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "node --test",
|
|
"format-code": "prettier --write \"*.js\" \"(test|lib)/*.js\"",
|
|
"format-code-staged": "pretty-quick --staged --pattern \"*.js\" --pattern \"(test|lib)/*.js\"",
|
|
"coverage": "c8 --reporter=lcov npm run test"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged"
|
|
}
|
|
}
|
|
}
|