-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.79 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
61
62
63
64
{
"name": "@quip.network/ethereum-sdk",
"version": "0.1.7",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"dist/**/*.json",
"typechain-types/**/*.d.ts",
"typechain-types/**/*.js",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./addresses": {
"types": "./dist/addresses.d.ts",
"require": "./dist/addresses.js",
"default": "./dist/addresses.js"
},
"./typechain-types": {
"types": "./typechain-types/index.d.ts",
"require": "./typechain-types/index.js",
"default": "./typechain-types/index.js"
}
},
"scripts": {
"clean": "rimraf dist typechain-types artifacts cache",
"prebuild": "npm run clean",
"copy-assets": "copyfiles -u 1 \"src/**/*.json\" dist",
"build": "hardhat compile && tsc && npm run copy-assets",
"prepare": "npm run build",
"typechain": "hardhat typechain",
"format": "prettier --write \"**/*.{ts,js,json,sol}\""
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"copyfiles": "^2.4.1",
"hardhat": "^2.22.19",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.3.2"
},
"dependencies": {
"@noble/ciphers": "^1.2.1",
"@noble/hashes": "^1.7.1",
"@quip.network/hashsigs": "^0.1.0",
"@quip.network/hashsigs-solidity": "^0.1.0",
"@types/jest": "^29.5.14",
"alchemy-sdk": "^3.5.6",
"dotenv": "^16.4.7",
"jest": "^29.7.0"
}
}