-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
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
{
"name": "connector-kit",
"version": "0.0.2",
"private": true,
"description": "A connector kit for solana applications",
"workspaces": [
"packages/*",
"apps/*",
"examples/*",
"tools/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write .",
"format:check": "prettier --check .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@solana/prettier-config-solana": "0.0.5",
"@types/d3-path": "^3.1.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"turbo": "^2.8.17"
},
"engines": {
"node": ">=20.18.0"
},
"packageManager": "pnpm@10.28.0"
}