snort/packages/nostr/package.json

55 lines
1.3 KiB
JSON

{
"name": "@snort/nostr",
"version": "1.0.0",
"main": "dist/lib.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && webpack",
"watch": "rm -rf dist && webpack -w",
"clean": "rm -rf dist",
"test": "ts-mocha --type-check -j 1 --timeout 5s test/test.*.ts",
"test-browser": "ts-node test/browser/server.ts",
"lint": "eslint ."
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"express": "^4.18.2",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"prettier": {
"semi": false
},
"dependencies": {
"@noble/hashes": "^1.2.0",
"@noble/secp256k1": "^1.7.1",
"@types/chai": "^4.3.4",
"@types/uuid": "^9.0.1",
"base64-js": "^1.5.1",
"bech32": "^2.0.0",
"chai": "^4.3.7",
"events": "^3.3.0",
"isomorphic-ws": "^5.0.0",
"ts-loader": "^9.4.2",
"uuid": "^9.0.0",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"ws": "^8.12.1"
},
"directories": {
"test": "test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}