-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "cayed",
"license": "ISC",
"type": "module",
"scripts": {
"gen:client": "bun ./createCodamaClient.ts",
"compile": "tsc --no-emit",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"format": "bunx prettier --check .",
"format:fix": "bunx prettier --write .",
"test": "./test.sh",
"detest": "bun test --timeout 1000000 tests/cayed.test.ts"
},
"dependencies": {
"@magicblock-labs/ephemeral-rollups-kit": "^0.8.5",
"@solana/kit": "^6.1.0",
"solana-kite": "^3.2.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.3.8",
"@codama/renderers-js": "^1.7.0",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.9",
"codama": "^1.5.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0"
}
}