dfklfg/packages/system/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2023-06-08 10:45:23 +00:00
{
"name": "@snort/system",
2024-01-15 12:04:51 +00:00
"version": "1.2.0",
2023-06-08 10:45:23 +00:00
"description": "Snort nostr system package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
2023-11-17 11:52:10 +00:00
"module": "src/index.ts",
2023-06-08 10:45:23 +00:00
"repository": "https://git.v0l.io/Kieran/snort",
2023-06-08 22:43:21 +00:00
"author": "v0l",
2023-09-15 10:10:52 +00:00
"license": "MIT",
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",
2024-01-05 10:30:28 +00:00
"@types/lokijs": "^1.5.14",
2023-09-06 18:39:15 +00:00
"@types/node": "^20.5.9",
2023-07-13 21:44:26 +00:00
"@types/uuid": "^9.0.2",
2023-09-06 18:39:15 +00:00
"@types/ws": "^8.5.5",
2023-06-08 10:45:23 +00:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
2023-09-06 18:39:15 +00:00
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
2023-06-08 10:45:23 +00:00
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@scure/base": "^1.1.2",
2024-01-15 12:04:51 +00:00
"@snort/shared": "^1.0.11",
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-11-08 14:47:35 +00:00
"eventemitter3": "^5.0.1",
2023-09-06 18:39:15 +00:00
"isomorphic-ws": "^5.0.0",
2024-01-05 10:30:28 +00:00
"lokijs": "^1.5.12",
2023-09-06 18:39:15 +00:00
"uuid": "^9.0.0",
"ws": "^8.14.0"
2023-06-08 10:45:23 +00:00
}
2023-07-22 18:37:46 +00:00
}