forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
{
"name": "@latticexyz/std-client",
"version": "1.40.0",
"description": "Standard library for MUD client.",
"license": "MIT",
"source": "src/index.ts",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git",
"directory": "packages/std-client"
},
"scripts": {
"prepare": "yarn build",
"link": "yarn link",
"docs": "rimraf API && typedoc src && find API -type f -name '*.md' -exec sed -E -i \"\" \"s/(#.*)(<.*>)/\\1/\" {} \\; && echo 'label: API' > API/index.yml",
"test": "tsc && echo 'todo: add tests'",
"prepack": "mv package.json package.json.bak && jq \".main = \\\"dist/index.js\\\"\" package.json.bak > package.json ",
"postpack": "mv package.json.bak package.json || echo 'no package.json.bak'",
"build": "rimraf dist && rollup -c rollup.config.js",
"release": "npm publish --access=public"
},
"devDependencies": {
"@latticexyz/network": "^1.40.0",
"@latticexyz/recs": "^1.40.0",
"@latticexyz/solecs": "^1.40.0",
"@latticexyz/utils": "^1.40.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.12",
"@types/react-collapse": "^5.0.1",
"@types/uuid": "^8.3.4",
"ethers": "^5.6.6",
"lodash": "^4.17.21",
"mobx": "^6.4.2",
"react": "^18.2.0",
"react-collapse": "^5.1.1",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.69.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rxjs": "^7.5.5",
"tslib": "^2.3.1",
"typedoc": "0.23.21",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@latticexyz/network": "^1.36.1",
"@latticexyz/recs": "^1.36.1",
"@latticexyz/solecs": "^1.36.1",
"@latticexyz/utils": "^1.36.1",
"ethers": "^5.6.6",
"lodash": "^4.17.21",
"mobx": "^6.4.2",
"react": "^18.2.0",
"react-collapse": "^5.1.1",
"react-dom": "^18.2.0",
"rxjs": "^7.5.5"
},
"gitHead": "914a1e0ae4a573d685841ca2ea921435057deb8f"
}