forked from snakajima/nouns-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 688 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 688 Bytes
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
{
"name": "@nouns/sdk",
"version": "0.1.6",
"description": "Useful tooling for interacting with the Nouns protocol",
"author": "Nounders",
"homepage": "https://nouns.wtf",
"license": "GPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\""
},
"dependencies": {
"@nouns/contracts": "^0.1.3",
"ethers": "^5.4.7"
},
"devDependencies": {
"@types/pngjs": "^6.0.1",
"pngjs": "^6.0.0"
},
"peerDependencies": {
"ethers": ">=5.0.0"
}
}