-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 853 Bytes
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
{
"name": "@lukup/stream-sdk",
"version": "0.0.4",
"description": "An SDK to develop applications on Lukup",
"repository": {
"type": "git",
"url": "git+https://github.com/lukup/stream-sdk.git"
},
"keywords": [
"content",
"streaming",
"lukup"
],
"author": "Kallol Borah",
"license": "BUSL1.1",
"bugs": {
"url": "https://github.com/lukup/stream-sdk/issues"
},
"homepage": "https://github.com/lukup/stream-sdk#readme",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc && npm link",
"publish": "tsc && npm publish",
"test": "mocha"
},
"bin": {
"greet": "./bin/index.bin.js"
},
"dependencies": {
"ethers": "^5.0.31"
},
"devDependencies": {
"dotenv": "^10.0.0",
"mocha": "^9.0.1",
"typescript": "^4.3.4"
}
}