-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.81 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
{
"name": "solana-nft-collections",
"version": "1.0.0",
"description": "A repository holding collection data for all the Legendary projects across the Solana ecosystem",
"main": "src/app.ts",
"scripts": {
"run_the_jewels": "npm run update:readme && npm run update:legends && npm run weight:legends && npm run merge:domains && npm run count:legends && npm run weight:partners",
"helpme": "node src/app.js -h",
"snapshot": "node src/app.js snapshot",
"snapshot:creator": "node src/app.js creator_snapshot",
"snapshot:legends": "node src/app.js snapshot_all_legends",
"update:readme": "node src/app.js update_readme",
"update:legends": "node src/app.js update_legends",
"weight:legends": "node src/app.js update_legends_weight",
"weight:partners": "node src/app.js generate_partner_weights",
"count:legends": "node src/app.js count_legends",
"merge:domains": "node src/app.js merge_domains",
"calc:reward": "node src/app.js snapshot --timestamp the_choice 8fmefJZapGpyVMDzj4MSYQfR7mTET1oV9hXyu1axCjLE && node src/app.js calc_legend_dist && node src/app.js total_rewards",
"filter:mp": "node src/app.js filter_mp",
"build:json": "ts-node src/build-json.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Legends-of-Sol/Solana-NFT-collections.git"
},
"keywords": [
"solana",
"nft",
"collections"
],
"author": "@h4rkl",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Legends-of-Sol/Solana-NFT-collections/issues"
},
"homepage": "https://github.com/Legends-of-Sol/Solana-NFT-collections#readme",
"devDependencies": {
"@solana/web3.js": "^1.89.1",
"colors": "^1.4.0",
"commander": "^11.1.0",
"csv-parser": "^3.0.0",
"dayjs": "^1.11.10"
}
}