forked from Narwallets/near-api-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "near-api-lite",
"version": "0.0.1",
"description": "non-official light near-api for ts/js",
"type": "commonjs",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "node dist/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Narwallets/near-api-lite.git"
},
"keywords": [
"near",
"api",
"typescript",
"lite",
"light",
"web3"
],
"author": "Lucio Tato <luciotato@gmail.com> (https://github.com/luciotato)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Narwallets/near-api-lite/issues"
},
"homepage": "https://github.com/Narwallets/near-api-lite#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/node-fetch": "^2.5.10",
"bs58": "^4.0.1",
"typedoc": "^0.20.35",
"typescript": "^4"
},
"dependencies": {
"bn.js": "^5.2.0",
"node-fetch": "^2.6.1"
}
}