@juiceswapxyz/v4-sdk 0.0.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "@juiceswapxyz/v4-sdk",
3
+ "description": "⚒️ An SDK for building applications on top of JuiceSwap V4",
4
+ "version": "0.0.1-beta.0",
5
+ "repository": "https://github.com/JuiceSwapxyz/sdk.git",
6
+ "keywords": [
7
+ "juiceswap",
8
+ "ethereum"
9
+ ],
10
+ "license": "MIT",
11
+ "main": "dist/index.js",
12
+ "typings": "dist/index.d.ts",
13
+ "module": "dist/v4-sdk.esm.js",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "engines": {
18
+ "node": ">=14"
19
+ },
20
+ "scripts": {
21
+ "build": "tsdx build",
22
+ "lint": "tsdx lint src",
23
+ "release": "semantic-release",
24
+ "start": "tsdx watch",
25
+ "test": "tsdx test"
26
+ },
27
+ "sideEffects": false,
28
+ "dependencies": {
29
+ "@ethersproject/solidity": "^5.0.9",
30
+ "@juiceswapxyz/sdk-core": "0.0.1-beta.0",
31
+ "@juiceswapxyz/v3-sdk": "0.0.1-beta.0",
32
+ "tiny-invariant": "^1.1.0",
33
+ "tiny-warning": "^1.0.3"
34
+ },
35
+ "devDependencies": {
36
+ "@types/chai": "^4.3.3",
37
+ "@types/mocha": "^9.1.1",
38
+ "@types/node": "^18.7.16",
39
+ "@types/node-fetch": "^2.6.2",
40
+ "chai": "^4.3.6",
41
+ "dotenv": "^16.0.3",
42
+ "eslint": "^7.8.0",
43
+ "eslint-config-prettier": "^6.11.0",
44
+ "eslint-plugin-eslint-comments": "^3.2.0",
45
+ "eslint-plugin-functional": "^3.0.2",
46
+ "eslint-plugin-import": "^2.22.0",
47
+ "jest": "25.5.0",
48
+ "prettier": "^2.4.1",
49
+ "ts-node": "^10.9.1",
50
+ "tsdx": "^0.14.1",
51
+ "tslib": "^2.3.0",
52
+ "typedoc": "^0.21.2",
53
+ "typescript": "^4.3.3"
54
+ },
55
+ "resolutions": {
56
+ "regenerator-runtime": "^0.14.1"
57
+ },
58
+ "resolutionsComments": {
59
+ "regenerator-runtime": "Fixes https://github.com/facebook/regenerator/pull/480. It can be removed when `tsdx` updates their dependencies."
60
+ },
61
+ "prettier": {
62
+ "printWidth": 120,
63
+ "semi": false,
64
+ "singleQuote": true
65
+ },
66
+ "publishConfig": {
67
+ "access": "public"
68
+ },
69
+ "release": {
70
+ "extends": "semantic-release-monorepo",
71
+ "branches": [
72
+ {
73
+ "name": "main",
74
+ "prerelease": false
75
+ }
76
+ ],
77
+ "plugins": [
78
+ [
79
+ "@semantic-release/commit-analyzer",
80
+ {
81
+ "preset": "angular",
82
+ "releaseRules": "../../publishing/release-rules.cjs"
83
+ }
84
+ ],
85
+ "@semantic-release/release-notes-generator",
86
+ "@semantic-release/npm",
87
+ "@semantic-release/github",
88
+ [
89
+ "@semantic-release/exec",
90
+ {
91
+ "successCmd": "git restore yarn.lock && yarn",
92
+ "failCmd": "git restore yarn.lock && yarn",
93
+ "execCwd": "../.."
94
+ }
95
+ ]
96
+ ]
97
+ }
98
+ }