-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "@moveflow/aptos-sdk",
"version": "0.0.12",
"description": "MoveFlow Aptos SDK",
"scripts": {
"test": "mocha --timeout 59000 --require ts-node/register",
"test-all": "mocha --timeout 59000 --require ts-node/register tests/*/*.test.ts",
"build": "tsc",
"build-doc": "npx typedoc"
},
"keywords": [
"aptos",
"move",
"moveflow",
"aptos-sdk"
],
"main": "./dist/src/index.js",
"author": "MoveFlow",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/moveflow/aptos-sdk.git"
},
"homepage": "https://www.moveflow.xyz/",
"bugs": {
"url": "https://github.com/moveflow/aptos-sdk/issues"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.26.7",
"typescript": "^5.5.4"
},
"dependencies": {
"@aptos-labs/ts-sdk": "~1.27.1",
"dotenv": "^16.4.5"
},
"files": [
"src",
"dist",
"tests"
]
}