forked from GokiProtocol/goki
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.64 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
{
"name": "@gokiprotocol/client",
"description": "TypeScript client for the Goki Smart Wallet system.",
"version": "0.11.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "https://github.com/GokiProtocol/goki.git",
"bugs": {
"url": "https://github.com/GokiProtocol/goki/issues",
"email": "[email protected]"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"homepage": "https://goki.so",
"license": "AGPL-3.0",
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"lint": "eslint .",
"idl:generate": "./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh",
"idl:generate:nolint": "RUN_ESLINT=none ./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh",
"test:e2e": "anchor test --skip-build tests/*.spec.ts",
"prepare": "husky install",
"typecheck": "tsc"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/anchor-contrib": "^1.13.30",
"@saberhq/chai-solana": "^1.13.30",
"@saberhq/eslint-config": "^1.13.30",
"@saberhq/solana-contrib": "^1.13.30",
"@saberhq/token-utils": "^1.13.30",
"@saberhq/tsconfig": "^1.13.30",
"@solana/web3.js": "^1.44.2",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/lodash.mapvalues": "^4.6.7",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.41",
"bn.js": "^5.2.1",
"chai": "^4.3.6",
"eslint": "^8.18.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jsbi": "^4.3.0",
"lint-staged": "^13.0.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.4"
},
"dependencies": {
"lodash.mapvalues": "^4.6.0",
"superstruct": "^0.16.0",
"tiny-invariant": "^1.2.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@project-serum/anchor": ">=0.24",
"@saberhq/anchor-contrib": "^1.13",
"@saberhq/solana-contrib": "^1.13",
"@saberhq/token-utils": "^1.13",
"@solana/web3.js": "^1.44",
"bn.js": "^5"
},
"files": [
"dist/",
"src/"
],
"lint-staged": {
"*.{ts,tsx,cjs,mjs}": "eslint --fix --cache",
"*.{css,md,json,webmanifest,yml,yaml,js,jsx,html,yml,yaml}": "prettier --write"
},
"packageManager": "[email protected]",
"resolutions": {
"chai": "=4.3.4"
}
}