-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.02 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
{
"name": "@plenty-labs/v3-sdk",
"description": "An SDK to interact with Plenty's segmented CFMM",
"version": "1.0.0-beta.5",
"license": "MIT",
"repository": "https://github.com/Plenty-network/v3-sdk.git",
"keywords": [
"tezos",
"plenty"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"author": "AnshuJalan",
"module": "dist/v3-sdk.esm.js",
"devDependencies": {
"husky": "^8.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@taquito/signer": "^15.0.1",
"@taquito/taquito": "^15.0.1",
"bignumber.js": "^9.1.1"
}
}