forked from aptos-labs/aptos-ts-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@aptos-labs/ts-sdk",
"description": "Aptos TypeScript SDK",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"engines": {
"node": ">=11.0.0"
},
"bugs": {
"url": "https://github.com/aptos-labs/aptos-ts-sdk/issues/new/choose"
},
"homepage": "https://aptos-labs.github.io/aptos-ts-sdk/",
"main": "dist/common/index.js",
"module": "dist/esm/index.mjs",
"exports": {
".": {
"source": "./src/index.ts",
"require": {
"types": "./dist/common/index.d.ts",
"default": "./dist/common/index.js"
},
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
}
},
"./dist/common/cli/index.js": "./dist/common/cli/index.js",
"./dist/esm/cli/index.mjs": "./dist/esm/cli/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build:clean": "rm -rf dist",
"build": "pnpm build:clean && tsup",
"prepublishOnly": "pnpm run build",
"_fmt": "prettier 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.js' 'examples/**/*.ts' '.eslintrc.js'",
"fmt": "pnpm _fmt --write",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"test": "pnpm jest",
"unit-test": "pnpm jest tests/unit",
"e2e-test": "pnpm jest tests/e2e",
"indexer-codegen": "graphql-codegen --config ./src/types/codegen.yaml && pnpm fmt",
"doc": "scripts/generateDocs.sh",
"check-version": "scripts/checkVersion.sh",
"update-version": "scripts/updateVersion.sh && pnpm doc",
"spec": "pnpm build && pnpm _spec",
"_spec": "cucumber-js -p default"
},
"dependencies": {
"@aptos-labs/aptos-cli": "^0.2.0",
"@aptos-labs/aptos-client": "^0.1.1",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@scure/bip32": "^1.4.0",
"@scure/bip39": "^1.3.0",
"eventemitter3": "^5.0.1",
"form-data": "^4.0.0",
"js-base64": "^3.7.7",
"jwt-decode": "^4.0.0",
"poseidon-lite": "^0.2.0"
},
"devDependencies": {
"@babel/traverse": "^7.23.6",
"@cucumber/cucumber": "^10.8.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@types/base-64": "^1.0.2",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.1.1",
"tree-kill": "^1.2.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"version": "1.28.0"
}