snort/packages/nostr/package.json
2023-05-17 23:36:34 +01:00

68 lines
1.6 KiB
JSON

{
"name": "@snort/nostr",
"version": "1.0.0",
"main": "dist/lib.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "webpack --node-env=production",
"watch": "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/curves": "^1.0.0",
"@noble/hashes": "^1.2.0",
"@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"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}