-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "solana-sdk",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"fix": "pnpm -r fix",
"clean": "turbo run clean && rm -rf node_modules",
"clean:cargo": "find . -type d \\( -name \"target\" -o -name \"test-ledger\" -o -name \".anchor\" \\) -exec rm -rf {} +",
"clean:js": "find . -type d -name \"node_modules\" -exec rm -rf {} +",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/config-conventional": "^17.4.4",
"@switchboard-xyz/eslint-config": "latest",
"@types/node": "^20.2.5",
"commitlint": "^17.4.4",
"eslint": "^8.42.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"turbo": "^1.10.3",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/switchboard-xyz/solana-sdk.git"
},
"packageManager": "[email protected]"
}