-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "@moveflow/sdk.js",
"version": "1.1.8",
"description": "SDK for use any functions of Moveflow",
"repository": "https://github.com/move-flow/sdk.js",
"license": "GPL-3.0-or-later",
"keywords": [
"moveflow",
"aptos",
"v1",
"sdk"
],
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/tsc/main.js",
"types": "./dist/tsc/main.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build",
"pub": "yarn build-all && npm publish"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"esbuild": "^0.15.18",
"eslint": "^8.29.0",
"jest": "29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.2.0",
"@aptos-labs/wallet-adapter-core": "^3.3.0",
"aptos": "^1.21.0",
"axios": "^1.2.0",
"bignumber.js": "^9.1.1",
"decimal.js": "^10.4.3",
"tslib": "^2.7.0"
}
}