-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 804 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 804 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
29
30
31
32
33
34
35
{
"name": "solana-rwa-treasury-tokenization",
"version": "1.0.0",
"description": "Production-grade Solana smart contract for RWA treasury tokenization",
"main": "lib/index.js",
"scripts": {
"build": "anchor build",
"test": "anchor test --skip-local-validator",
"test:local": "anchor test",
"lint": "cargo clippy",
"format": "cargo fmt"
},
"keywords": [
"solana",
"anchor",
"rwa",
"treasury",
"tokenization",
"defi"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.30.0",
"@solana/web3.js": "^1.87.6",
"@solana/spl-token": "^0.4.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.3.3"
}
}