snort/packages/nostr/package.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2023-02-11 20:05:46 +00:00
{
"name": "@snort/nostr",
"version": "1.0.0",
2023-04-08 18:36:01 +00:00
"main": "dist/lib.js",
"types": "dist/src/index.d.ts",
2023-02-11 20:05:46 +00:00
"scripts": {
2023-05-17 22:36:34 +00:00
"build": "webpack --node-env=production",
2023-05-17 22:02:43 +00:00
"watch": "webpack -w",
2023-04-09 17:12:49 +00:00
"clean": "rm -rf dist",
2023-04-05 14:00:36 +00:00
"test": "ts-mocha --type-check -j 1 --timeout 5s test/test.*.ts",
"test-browser": "ts-node test/browser/server.ts",
2023-02-25 11:07:01 +00:00
"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",
2023-04-05 14:00:36 +00:00
"@types/express": "^4.17.17",
2023-02-25 11:07:01 +00:00
"@types/mocha": "^10.0.1",
2023-07-13 21:44:26 +00:00
"@types/node": "^20.4.1",
2023-02-25 11:07:01 +00:00
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
2023-04-05 14:00:36 +00:00
"express": "^4.18.2",
2023-02-25 11:07:01 +00:00
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
2023-04-05 14:00:36 +00:00
"ts-node": "^10.9.1",
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-05-17 11:59:30 +00:00
"@noble/curves": "^1.0.0",
2023-03-16 17:10:17 +00:00
"@noble/hashes": "^1.2.0",
2023-04-05 14:00:36 +00:00
"@types/chai": "^4.3.4",
2023-04-08 19:14:08 +00:00
"@types/uuid": "^9.0.1",
2023-03-06 21:47:14 +00:00
"base64-js": "^1.5.1",
2023-02-25 11:07:01 +00:00
"bech32": "^2.0.0",
2023-04-05 14:00:36 +00:00
"chai": "^4.3.7",
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",
2023-04-05 14:00:36 +00:00
"ts-loader": "^9.4.2",
2023-04-08 19:14:08 +00:00
"uuid": "^9.0.0",
2023-04-05 14:00:36 +00:00
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
2023-02-21 22:46:00 +00:00
"ws": "^8.12.1"
},
"directories": {
"test": "test"
},
2023-05-17 11:59:30 +00:00
"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": ""
2023-07-22 18:37:46 +00:00
}