-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 902 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 902 Bytes
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
{
"name": "encrypted-forest",
"private": true,
"version": "0.1.0",
"description": "Solana blockchain game with Arcium MPC fog-of-war mechanics",
"workspaces": [
"sdk/core",
"sdk/solidjs-sdk",
"solidjs-client",
"tests"
],
"scripts": {
"dev": "./scripts/dev-start.sh",
"dev:docker": "./scripts/dev-start.sh --docker",
"stop": "./scripts/dev-stop.sh",
"build": "arcium build",
"deploy": "./scripts/deploy-local.sh",
"test": "arcium test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"clean": "make clean"
},
"dependencies": {
"@arcium-hq/client": "0.6.6",
"@coral-xyz/anchor": "^0.32.1",
"@noble/hashes": "^2.0.1",
"@solana/web3.js": "~1.95.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"bun-types": "^1.3.7",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"license": "MIT"
}