-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@civic/token-guard",
"description": "Client SDK for the TokenGuard Solana program",
"version": "0.0.9",
"author": "dankelleher @dankelleher",
"repository": "https://github.com/civicteam/token-guard",
"homepage": "https://civicteam.github.io/token-guard/",
"bugs": "https://github.com/civicteam/token-guard/issues",
"license": "MIT",
"dependencies": {
"@identity.com/solana-gateway-ts": "^0.3.3",
"@metaplex/js": "^4.7.0",
"@oclif/command": "^1.8.3",
"@oclif/config": "^1.17.1",
"@oclif/plugin-help": "^3.2.5",
"@project-serum/anchor": "^0.18.2",
"@solana/spl-token": "^0.1.8",
"oclif": "^1.18.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@identity.com/solana-gatekeeper-lib": "^1.1.3",
"@oclif/dev-cli": "^1.26.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.8",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"axios": "^0.24.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.2.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^10",
"mocha": "^9.0.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"resolutions": {
"axios": "^0.24.0"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"bin": {
"token-guard": "./bin/run"
},
"oclif": {
"commands": "./dist/src/commands",
"bin": "token-guard",
"plugins": [
"@oclif/plugin-help"
]
},
"main": "dist/src/index.js",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf dist && tsc -b && oclif-dev manifest && oclif-dev readme",
"build": "yarn clean && anchor build && yarn compile",
"clean": "rimraf -rf ./dist",
"compile": "tsc -p tsconfig.json",
"prepare": "yarn build",
"lint": "yarn eslint src/ tests/ --ext ts",
"test": "anchor test",
"idl:deploy-local": "anchor idl --provider.cluster localnet init --filepath target/idl/token_guard.json tg7bdEQom2SZT1JB2d77RDJFYaL4eZ2FcM8HZZAg5Z8"
}
}