-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@nekosuneprojects/vector-sdk",
"version": "1.0.4",
"description": "Node.js reimplementation of the Vector Bot SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/NekoSuneProjects/vector-sdk-js.git"
},
"bugs": {
"url": "https://github.com/NekoSuneProjects/vector-sdk-js/issues"
},
"keywords": [
"nostr",
"vector",
"bot",
"crypto",
"sdk"
],
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.5.0",
"@noble/secp256k1": "^1.5.0",
"file-type": "^18.0.0",
"form-data": "^4.0.5",
"mime-types": "^3.0.2",
"node-fetch": "^3.3.1",
"nostr-tools": "^2.19.4",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^20.7.0",
"@types/ws": "^8.18.1",
"typescript": "^5.5.2"
}
}