-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
104 lines (104 loc) · 2.63 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
97
98
99
100
101
102
103
104
{
"name": "@wen-moon-ser/moonshot-sdk",
"version": "4.1.2",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier --write 'src/**/*.{js,ts,json,md}'"
},
"repository": "git@github.com:@wen-moon-ser/moonshot-sdk",
"author": "support@moonshot.cc",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"dotenv": "^16.4.5",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@heliofi/launchpad-common": "1.1.2",
"@solana/spl-token": "0.3.9",
"@solana/web3.js": "^1.68.0",
"@types/bn.js": "^5.1.5",
"axios": "^1.7.2",
"bn.js": "^5.2.1"
},
"eslintConfig": {
"root": true,
"plugins": [
"prettier",
"jest",
"import"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-module-boundary-types": [
"warn"
],
"@typescript-eslint/explicit-function-return-type": [
"warn"
],
"@typescript-eslint/no-explicit-any": [
"warn"
],
"@typescript-eslint/naming-convention": [
"off"
],
"@typescript-eslint/no-duplicate-enum-values": "off",
"no-await-in-loop": "off",
"import/export": "off",
"no-underscore-dangle": "off",
"new-cap": "off",
"no-restricted-syntax": "off",
"no-continue": "off",
"no-plusplus": "off",
"no-param-reassign": [
2,
{
"props": false
}
],
"no-useless-constructor": "off"
},
"extends": [
"airbnb-typescript/base",
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"ignorePatterns": []
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"prettierIgnore": [
"node_modules/",
"dist/"
]
}