forked from gemworks/gem-farm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "@gemworks/gem-farm-ts",
"version": "0.22.10",
"description": "sdk for Gem Farm (by GemWorks 💎)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemworks/gem-farm.git"
},
"keywords": [
"solana",
"nft",
"staking"
],
"author": "ilmoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemworks/gem-farm/issues"
},
"homepage": "https://github.com/gemworks/gem-farm#readme",
"scripts": {
"build": "anchor build && ./scripts/cp_idl.sh",
"test": "yarn build && anchor test --skip-build",
"pub": "rm -rf ./dist && tsc && npm version patch --force && npm publish --access public",
"update:apps": "cd ./app/gem-bank && yarn update && cd ../gem-farm && yarn update",
"update:anchor": "yarn upgrade @project-serum/anchor --latest --check-files"
},
"dependencies": {
"@metaplex-foundation/mpl-token-metadata": "^0.0.2",
"@metaplex/js": "^4.9.0",
"@project-serum/anchor": "0.22.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.8.1",
"@solana/web3.js": "^1.31.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.0.3",
"prettier": "^2.5.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
}
}