-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "@solana/governance-program-library",
"version": "0.18.0",
"description": "Client for Governance Program Library which is a set of extensions for Solana's spl-governance program.",
"author": "Solana Maintainers <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "https://github.com/solana-labs/governance-program-library",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --check .",
"lint": "eslint . --ext ts --ext tsx --ext js --quiet"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^7.2.0",
"mocha": "^9.2.2",
"prettier": "^2.0.5",
"ts-mocha": "^9.0.2",
"ts-node": "^9.1.1",
"typedoc": "^0.22.5",
"typescript": "^4.1.3"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@identity.com/solana-gateway-ts": "^0.12.0",
"@solana/spl-governance": "^0.3.28",
"@coral-xyz/anchor": "^0.30.1"
}
}