forked from Mol0D/aptos-sdk-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@exodus/aptos-sdk-fork",
"description": "Aptos SDK",
"packageManager": "pnpm@8.3.1",
"license": "Apache-2.0",
"engines": {
"node": ">=11.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "pnpm build:clean && pnpm _build:node && pnpm _build:browser",
"build:clean": "rm -rf dist",
"_build:browser": "tsup --platform browser --format iife --global-name aptosSDK --minify",
"_build:node": "tsup --platform node --format cjs,esm --dts",
"lint": "eslint \"**/*.ts\"",
"test": "jest",
"fmt": "pnpm _fmt --write",
"fmt:check": "pnpm _fmt --check",
"cov:clean": "rm -rf coverage"
},
"dependencies": {
"@noble/hashes": "1.1.3",
"tweetnacl": "1.0.3",
"@scure/bip39": "1.2.1"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/node": "18.6.2",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"dotenv": "16.0.2",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"jest": "28.1.3",
"prettier": "2.6.2",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsup": "6.2.3",
"typedoc": "^0.23.20",
"typescript": "4.8.2"
},
"version": "1.19.4"
}