generated from CareBoo/UPMTemplate-2020
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 2.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "com.careboo.unity-algorand-sdk",
"displayName": "Algorand.Unity",
"version": "5.0.0",
"unity": "2021.3",
"keywords": [
"algorand",
"tool",
"sdk",
"crypto",
"blockchain"
],
"license": "MIT",
"description": "Integrate your game with Algorand, a Pure Proof-of-Stake blockchain overseen by the Algorand Foundation.\nCreate Algorand transactions, Algorand accounts, and use Algorand's REST APIs.",
"dependencies": {
"com.unity.collections": "1.5.1",
"com.cysharp.unitask": "2.3.1",
"com.unity.ugui": "1.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": "github:CareBoo/unity-algorand-sdk",
"changelogUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/changelog",
"documentationUrl": "https://careboo.github.io/unity-algorand-sdk/5.0",
"licensesUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/license",
"author": {
"name": "CareBoo",
"url": "https://github.com/CareBoo"
},
"samples": [
{
"displayName": "Local Wallet",
"description": "An example UI showcasing how to use LocalAccountStore with PlayerPrefs to store a player's wallet locally.",
"path": "Samples~/LocalAccountStore"
},
{
"displayName": "Your First Transaction",
"description": "Contains a scene for signing and submitting your first Algorand transaction.",
"path": "Samples~/YourFirstTransaction"
},
{
"displayName": "Creating ASAs",
"description": "Scripts that can be used to create Algorand Standard Assets (ASAs) in the Unity Editor.",
"path": "Samples~/CreatingAsas"
},
{
"displayName": "Calling Smart Contract ABI",
"description": "Generate a GUI from a contract.json and call its smart contract methods.",
"path": "Samples~/CallingSmartContractAbi"
},
{
"displayName": "NFT Viewer",
"description": "Display NFTs following ARC-0064 in an Account.",
"path": "Samples~/NFTViewer"
}
],
"scripts": {
"version": "./scripts/updateVersionUrl.sh && git add package.json .docfx/docfx.json README.md Algorand.Unity.AssetStore/Packages/com.careboo.unity-algorand-sdk/package.json"
}
}