dfklfg/packages/system/package.json

40 lines
941 B
JSON
Raw Normal View History

2023-06-08 10:45:23 +00:00
{
"name": "@snort/system",
2023-08-24 14:25:54 +00:00
"version": "1.0.17",
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",
2023-07-23 22:19:26 +00:00
"test": "jest --runInBand"
2023-06-08 10:45:23 +00:00
},
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",
2023-06-14 14:03:07 +00:00
"@peculiar/webcrypto": "^1.4.3",
2023-07-13 21:44:26 +00:00
"@types/debug": "^4.1.8",
2023-06-08 10:45:23 +00:00
"@types/jest": "^29.5.1",
2023-07-13 21:44:26 +00:00
"@types/uuid": "^9.0.2",
2023-06-08 10:45:23 +00:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
2023-07-13 21:44:26 +00:00
"typescript": "^5.1.6"
2023-06-08 10:45:23 +00:00
},
"dependencies": {
"@noble/curves": "^1.0.0",
2023-07-13 21:44:26 +00:00
"@noble/hashes": "^1.3.1",
2023-06-14 14:03:07 +00:00
"@scure/base": "^1.1.1",
2023-08-24 14:37:19 +00:00
"@snort/shared": "^1.0.4",
2023-06-14 14:03:07 +00:00
"@stablelib/xchacha20": "^1.0.1",
2023-06-08 10:45:23 +00:00
"debug": "^4.3.4",
2023-06-15 11:03:05 +00:00
"dexie": "^3.2.4",
2023-06-08 10:45:23 +00:00
"uuid": "^9.0.0"
}
2023-07-22 18:37:46 +00:00
}