forked from getAlby/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 KB
/
package.json
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
{
"name": "alby-js-sdk",
"version": "1.5.2",
"description": "The SDK to integrate with Nostr Wallet Connect and the Alby API",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"scripts": {
"prebuild": "yarn run clean",
"prepack": "yarn run build",
"test": "echo tests are missing",
"clean": "rm -rf dist",
"build": "microbundle",
"dev": "microbundle watch"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"nostr-tools": "^1.10.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.11.0",
"express": "^4.18.2",
"microbundle": "^0.15.1",
"typescript": "^4.8.4",
"websocket-polyfill": "^0.0.3"
},
"engines": {
"node": ">=14"
},
"author": "Alby contributors",
"license": "MIT"
}