forked from nounsDAO/nouns-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 760 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
28
{
"name": "@nouns/assets",
"version": "0.2.0",
"description": "Nouns run-length encoded image data",
"author": "Nounders",
"homepage": "https://nouns.wtf",
"license": "GPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"encode": "ts-node scripts/encode.ts",
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\""
},
"devDependencies": {
"@nouns/sdk": "^0.1.4",
"@types/pngjs": "^6.0.1",
"chai": "^4.2.0",
"mocha": "^8.4.0",
"pngjs": "^6.0.0"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/solidity": "^5.5.0"
}
}