forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.06 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
{
"private": true,
"workspaces": [
"libraries/type-length-value/js",
"memo/js",
"single-pool/js",
"stake-pool/js",
"token/js",
"token-group/js",
"token-lending/js",
"token-metadata/js",
"token-swap/js"
],
"scripts": {
"build": "turbo run build",
"build:program": "turbo run build:program",
"clean": "turbo run clean",
"lint": "turbo run lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "turbo run test"
},
"devDependencies": {
"@solana/eslint-config-solana": "^4.0.0",
"@solana/prettier-config-solana": "^0.0.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.2.3",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"turbo": "^2.2.3"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"prettier": "@solana/prettier-config-solana",
"name": "solana-program-library"
}