-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1006 Bytes
/
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
{
"name": "opensea-floor-looks-rare",
"version": "0.2.3",
"description": "🧸 💸 Determine the rarity of floor NFTs on OpenSea.",
"main": "dist",
"repository": "https://github.com/cawfree/opensea-floor-looks-rare",
"author": "Alex Thomas (@cawfree) <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -rf node_modules dist; yarn && tsc && chmod +x dist/index.js",
"test": "node_modules/.bin/ts-node src"
},
"devDependencies": {
"@types/node": "^17.0.0",
"@types/puppeteer": "^5.4.4",
"@types/yargs": "^17.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"bin": {
"opensea-floor-looks-rare": "dist/index.js"
},
"dependencies": {
"chalk": "4.1.2",
"console-table-printer": "^2.10.0",
"puppeteer": "^13.0.0",
"puppeteer-autoscroll-down": "^1.0.0",
"puppeteer-core": "^13.0.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"yargs": "^17.3.0"
}
}