-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "@phuture/sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/Phuture-Finance/phuture-sdk.git"
},
"private": false,
"version": "1.0.3",
"type": "module",
"main": "./dist/cjs.js",
"module": "./dist/esm.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "npm run build",
"start": "npx tsx ./examples/example-$npm_config_name.ts",
"build:js": "node esbuild.mjs",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"build": "npm run build:js && npm run build:types",
"dev": "npm run build:js -- --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepare": "husky install",
"fix": "npx @biomejs/biome check --write src",
"typechain": "typechain --target=ethers-v5 --out-dir=src/typechain 'src/abis/**/*.json' --always-generate-overloads",
"verify-pack": "npm pack && tar -xvzf *.tgz && rm -rf package && rm *.tgz"
},
"peerDependencies": {
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@ethersproject/abstract-provider": "5.7.0",
"axios": "1.7.7",
"ethers": "5.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@ethersproject/providers": "5.7.2",
"@typechain/ethers-v5": "10.1.1",
"@types/node": "16.11.7",
"esbuild": "^0.23.1",
"esbuild-node-externals": "^1.14.0",
"husky": "8.0.3",
"rimraf": "^6.0.1",
"tslib": "2.4.1",
"typechain": "8.1.1"
}
}