-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@tribecahq/permalock",
"version": "0.2.0",
"description": "The TypeScript SDK for Tribeca Permalock: voting escrows with infinite lockup.",
"keywords": [
"solana",
"tribeca",
"vetoken"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "[email protected]:TribecaHQ/permalock.git",
"author": "Tribeca DAO <[email protected]>",
"bugs": {
"url": "https://github.com/TribecaHQ/permalock/issues",
"email": "[email protected]"
},
"homepage": "https://tribeca.so",
"license": "AGPL-3.0",
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"idl:generate": "./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh",
"idl:generate:nolint": "./scripts/parse-idls.sh && RUN_ESLINT=none ./scripts/generate-idl-types.sh",
"typecheck": "tsc",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"test:e2e": "anchor test --skip-build 'tests/**/*.ts'",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"prepare": "husky install",
"cargo-readme": "cd programs/permalock/ && cargo readme > README.md && cd ../../ && rm README.md && cp programs/permalock/README.md README.md"
},
"devDependencies": {
"@gokiprotocol/client": "^0.8.0",
"@project-serum/anchor": "^0.22.1",
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/anchor-contrib": "^1.12.50",
"@saberhq/chai-solana": "^1.12.50",
"@saberhq/eslint-config": "^1.12.50",
"@saberhq/solana-contrib": "^1.12.50",
"@saberhq/token-utils": "^1.12.50",
"@saberhq/tsconfig": "^1.12.50",
"@solana/web3.js": "^1.36.0",
"@tribecahq/tribeca-sdk": "^0.5.4",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/prettier": "^2.4.4",
"@yarnpkg/doctor": "^3.1.1",
"bn.js": "^5.2.0",
"chai": "=4.3.4",
"eslint": "^8.11.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jsbi": "^4.2.0",
"lint-staged": "^12.3.5",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"peerDependencies": {
"@project-serum/anchor": "^0.22",
"@saberhq/anchor-contrib": "^1.12",
"@saberhq/solana-contrib": "^1.12",
"@saberhq/token-utils": "^1.12",
"@solana/web3.js": "^1.29.2",
"@tribecahq/tribeca-sdk": "*",
"bn.js": "^5.2.0"
},
"resolutions": {
"bn.js": "^5.2.0",
"@types/bn.js": "^5.1.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md}": "prettier --write"
},
"dependencies": {
"tiny-invariant": "^1.2.0",
"tslib": "^2.3.1"
},
"packageManager": "[email protected]"
}