-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "escrow-program",
"version": "1.0.0",
"main": "index.js",
"description": "Escrow Program",
"repository": "git@github.com:solana-program/escrow.git",
"license": "MIT",
"scripts": {
"build": "cd clients/typescript && tsc",
"generate-clients": "tsx ./scripts/generate-clients.ts",
"generate-idl": "cd program && cargo check --features idl",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "cd clients/typescript && tsc --noEmit"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.3.8",
"@codama/renderers-js": "^1.7.0",
"@codama/renderers-rust": "^1.2.9",
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@solana-program/system": "^0.11.0",
"@solana-program/token": "^0.10.0",
"@solana-program/token-2022": "^0.9.0",
"@solana/eslint-config-solana": "6.0.0",
"@solana/kit": "^6.0.1",
"@solana/prettier-config-solana": "^0.0.6",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^9.14.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"codama": "^1.5.0",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"globals": "^16.5.0",
"jest": "^30.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"pnpm": {
"overrides": {
"diff": ">=4.0.4",
"ajv@^6.0.0": "6.14.0",
"brace-expansion@^1.1.7": "1.1.13",
"flatted@^3.0.0": "3.4.2",
"handlebars@^4.0.0": "4.7.9",
"h3@^1.0.0": "1.15.9",
"lodash@^4.0.0": "4.17.23",
"minimatch@^3.0.0": "3.1.4",
"minimatch@^9.0.0": "9.0.7",
"picomatch@^2.0.0": "2.3.2",
"picomatch@^4.0.0": "4.0.4",
"socket.io-parser@^4.0.0": "4.2.6"
}
}
}