-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
100 lines (100 loc) · 3.15 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
100
{
"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": "^1.0.2",
"@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.25.7",
"@cucumber/cucumber": "^11.0.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@types/base-64": "^1.0.2",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.3.3",
"tree-kill": "^1.2.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typedoc": "^0.26.8",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.2"
},
"version": "1.33.0"
}