-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.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
{
"name": "@jet-lab/jet-engine",
"version": "0.1.10",
"description": "Library for interacting with the Jet on-chain programs",
"keywords": [
"solana",
"jet",
"protocol",
"blockchain"
],
"homepage": "https://github.com/jet-lab/jet-engine#readme",
"repository": {
"type": "git",
"url": "https://github.com/jet-lab/jet-engine.git"
},
"bugs": {
"url": "https://github.com/jet-lab/jet-engine/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/",
"docs": "typedoc --excludePrivate --includeVersion src/index.ts",
"fmt": "prettier src/ tests/ types/ --check",
"fmt:fix": "prettier src/ tests/ types/ --write",
"lint": "eslint src/ --ext .ts",
"test": "jest",
"precommit": "npm run fmt:fix && npm run lint",
"prepare": "husky install"
},
"dependencies": {
"@project-serum/anchor": "^0.18.0",
"@project-serum/serum": "^0.13.60",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.29.3",
"eventemitter3": "^4.0.7"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.6",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"package.json",
"tsconfig.json",
"LICENSE",
"README.md"
],
"directories": {
"lib": "lib"
}
}