-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 KB
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
{
"name": "@ericxstone/permit2-sdk",
"version": "1.0.0",
"description": "A permit2 SDK fork from Uniswap and get it on Ethers v6",
"repository": "https://github.com/EricxStone/permit2-sdk",
"keywords": [
"permit2",
"ethereum"
],
"license": "MIT",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rm -rf ./dist",
"interop": "yarn node writeInterop.js",
"lint": "prettier --check src/",
"test": "env-cmd -f ./.env jest",
"test:cicd": "jest",
"prepare": "husky"
},
"dependencies": {
"ethers": "^6.15.0",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"env-cmd": "^11.0.0",
"husky": "^9.1.7",
"jest": "^30.1.3",
"prettier": "^2.4.1",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^4.3.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"publishConfig": {
"access": "public",
"provenance": true
}
}