-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "zetachain-universal-nft",
"version": "0.1.0",
"description": "Universal NFT program for cross-chain interactions between ZetaChain and Solana",
"main": "index.js",
"scripts": {
"build": "anchor build",
"test": "anchor test",
"test:localnet": "anchor test --provider.cluster localnet",
"test:devnet": "anchor test --provider.cluster devnet",
"deploy:localnet": "anchor deploy --provider.cluster localnet",
"deploy:devnet": "anchor deploy --provider.cluster devnet",
"deploy:mainnet": "anchor deploy --provider.cluster mainnet",
"start:localnet": "./localnet.sh start",
"stop:localnet": "./localnet.sh stop",
"demo:localnet": "./localnet.sh demo",
"clean": "anchor clean",
"lint": "cargo clippy",
"fmt": "cargo fmt",
"docs": "cargo doc --open"
},
"keywords": [
"solana",
"zetachain",
"nft",
"cross-chain",
"blockchain",
"defi",
"interoperability"
],
"author": "ZetaChain Superteam",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zeta-chain/standard-contracts.git"
},
"bugs": {
"url": "https://github.com/zeta-chain/standard-contracts/issues"
},
"homepage": "https://github.com/zeta-chain/standard-contracts#readme",
"devDependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.87.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.0"
},
"dependencies": {},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}