-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "@shutter-network/shop-sdk",
"version": "0.1.3",
"description": "SDK for interacting with shutter on optimism",
"author": "Shutter Network <[email protected]>",
"homepage": "https://github.com/shutter-network/shop-sdk#README.md",
"license": "ISC",
"exports": {
".": {
"import": "./lib.esm/index.js",
"default": "./lib.commonjs/index.js"
}
},
"main": "./lib.commonjs/index.js",
"module": "./lib.esm/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --build ./tsconfig.esm.json",
"build-all": "npm run build && npm run build-commonjs",
"build-clean": "npm run clean && npm run build-all",
"build-commonjs": "tsc --build ./tsconfig.commonjs.json",
"lint": "eslint --ext .js,.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|md)\"",
"clean": "rm -rf lib.commonjs lib.esm && cp -r misc/basedirs/* .",
"publish": "npm publish --access=public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@ethersproject/properties": "^5.7.0",
"@shutter-network/shutter-crypto": "^2.0.0",
"ethers": "^6.8.1",
"hardhat": "^2.19.0"
}
}