-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathpackage.json
83 lines (83 loc) · 2.61 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@latticexyz/cli",
"version": "2.0.0-next.14",
"description": "Command line interface for mud",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git",
"directory": "packages/cli"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "src/index.ts",
"bin": {
"mud": "./dist/mud.js"
},
"scripts": {
"build": "pnpm run build:js && pnpm run build:test-tables",
"build:js": "tsup && chmod +x ./dist/mud.js",
"build:test-tables": "tsx ./scripts/generate-test-tables.ts",
"clean": "pnpm run clean:js && pnpm run clean:test-tables",
"clean:js": "rimraf dist",
"clean:test-tables": "rimraf src/codegen",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts",
"prepare": "mkdir -p ./dist && touch ./dist/mud.js",
"test": "tsc --noEmit && forge test",
"test:ci": "pnpm run test"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@latticexyz/abi-ts": "workspace:*",
"@latticexyz/common": "workspace:*",
"@latticexyz/config": "workspace:*",
"@latticexyz/gas-report": "workspace:*",
"@latticexyz/protocol-parser": "workspace:*",
"@latticexyz/schema-type": "workspace:*",
"@latticexyz/services": "workspace:*",
"@latticexyz/store": "workspace:*",
"@latticexyz/utils": "workspace:*",
"@latticexyz/world": "workspace:*",
"@latticexyz/world-modules": "workspace:*",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"ethers": "^5.7.2",
"execa": "^7.0.0",
"glob": "^8.0.3",
"nice-grpc-web": "^2.0.1",
"openurl": "^1.1.1",
"p-retry": "^5.1.2",
"path": "^0.12.7",
"rxjs": "7.5.5",
"throttle-debounce": "^5.0.0",
"typescript": "5.1.6",
"viem": "1.14.0",
"yargs": "^17.7.1",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/ejs": "^3.1.1",
"@types/glob": "^7.2.0",
"@types/node": "^18.15.11",
"@types/openurl": "^1.0.0",
"@types/throttle-debounce": "^5.0.0",
"@types/yargs": "^17.0.10",
"ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "https://github.com/foundry-rs/forge-std.git#74cfb77e308dd188d2f58864aaf44963ae6b88b1",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"vitest": "0.31.4"
},
"gitHead": "914a1e0ae4a573d685841ca2ea921435057deb8f"
}