snort/packages/nostr/package.json

34 lines
771 B
JSON
Raw Normal View History

2023-02-11 20:05:46 +00:00
{
"name": "@snort/nostr",
"version": "1.0.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
2023-02-25 11:07:01 +00:00
"watch": "tsc -w",
"test": "ts-mocha --type-check -j 1 test/*.ts",
"lint": "eslint ."
2023-02-11 20:05:46 +00:00
},
"devDependencies": {
2023-02-28 23:10:53 +00:00
"@types/events": "^3.0.0",
2023-02-25 11:07:01 +00:00
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
2023-02-11 20:05:46 +00:00
"typescript": "^4.9.5"
2023-02-15 20:46:05 +00:00
},
"prettier": {
"semi": false
2023-02-21 22:46:00 +00:00
},
"dependencies": {
2023-02-25 11:07:01 +00:00
"@noble/secp256k1": "^1.7.1",
"bech32": "^2.0.0",
2023-02-28 23:10:53 +00:00
"events": "^3.3.0",
2023-02-21 22:46:00 +00:00
"isomorphic-ws": "^5.0.0",
"ws": "^8.12.1"
2023-02-11 20:05:46 +00:00
}
}