forked from solana-labs/governance-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1.33 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
{
"name": "@solana/governance-program-library",
"version": "0.15.2",
"description": "Client for Governance Program Library which is a set of extensions for Solana's spl-governance program.",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"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",
"prettier": "^2.0.5",
"ts-mocha": "^9.0.2",
"ts-node": "^9.1.1",
"typedoc": "^0.22.5",
"typescript": "^4.1.3",
"mocha": "^9.2.2"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@project-serum/anchor": "^0.24.2",
"@project-serum/serum": "^0.13.61"
}
}