snort/packages/system/package.json

34 lines
740 B
JSON
Raw Normal View History

2023-06-08 10:45:23 +00:00
{
"name": "@snort/system",
2023-06-13 10:40:09 +00:00
"version": "1.0.2",
2023-06-08 10:45:23 +00:00
"description": "Snort nostr system package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://git.v0l.io/Kieran/snort",
2023-06-08 22:43:21 +00:00
"author": "v0l",
"license": "GPL-3.0-or-later",
2023-06-08 10:45:23 +00:00
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest"
},
2023-06-08 22:43:21 +00:00
"files": [
"src",
"dist"
],
2023-06-08 10:45:23 +00:00
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@noble/curves": "^1.0.0",
"@protobufjs/base64": "^1.1.2",
"bech32": "^2.0.0",
"debug": "^4.3.4",
"uuid": "^9.0.0"
}
}