-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.56 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
65
66
67
68
69
{
"name": "rocket-anchor",
"version": "1.0.15",
"description": "Hardhat-style deployment tool for Solana Anchor programs with seeding support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ra": "bin/ra.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest"
},
"keywords": [
"solana",
"anchor",
"deployment",
"hardhat",
"web3",
"seeding",
"blockchain",
"devtools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ra-sun-god/rocket-anchor.git"
},
"bugs": {
"url": "https://github.com/ra-sun-god/rocket-anchor/issues"
},
"homepage": "https://github.com/ra-sun-god/rocket-anchor#readme",
"author": "Ra <ra@maxxpainn.com>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@solana/web3.js": "^1.87.0",
"commander": "^11.0.0",
"chalk": "^4.1.2",
"bs58": "^5.0.0",
"ora": "^5.4.1",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0"
},
"peerDependencies": {
"@coral-xyz/anchor": ">=0.28.0",
"@solana/web3.js": ">=1.80.0"
}
}