forked from Narwallets/liquid-staking-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
45
46
47
48
49
50
{
"name": "@metapool/liquid-staking-sdk",
"version": "0.1.1",
"description": "Meta Pool Liquid Staking SDK",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/narwallets/liquid-staking-sdk.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "commonjs",
"scripts": {
"build": "rm -fr dist; npx tsc -b -verbose; npx webpack",
"pretest": "npm run lint",
"test": "echo TODO",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"prepack": "npm run test && npm run build"
},
"keywords": [
"NEAR",
"STNEAR",
"meta",
"pool",
"liquid",
"staking"
],
"license": "ISC",
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"near-api-js": "^5.0.1"
}
}