forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.59 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
{
"name": "mud",
"version": "0.0.0",
"description": "Mud is the fabric of autonomous worlds",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git"
},
"private": true,
"workspaces": {
"packages": [
"packages/utils",
"packages/solecs",
"packages/cli",
"packages/recs",
"packages/react",
"packages/phaserx",
"packages/network",
"packages/std-contracts",
"packages/std-client",
"packages/ecs-browser",
"packages/services",
"packages/noise",
"packages/create-mud"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@parcel/optimizer-data-url": "2.7.0",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-inline-string": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.15.0",
"husky": ">=6",
"jq-cli-wrapper": "^1.6.1",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"retypeapp": "^2.4.0",
"rimraf": "^3.0.2",
"run-pty": "^3.0.0",
"typescript": ">=3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"prepare": "husky install && (forge --version || yarn foundryup) && yarn workspaces run prepare",
"commit": "cz",
"prettier:check": "prettier --check 'packages/**/*.ts'",
"prettier": "prettier --write 'packages/**/*.ts'",
"lint": "eslint . --ext .ts",
"release": "yarn && lerna publish --no-private --force-publish && yarn retype:updateversion",
"release:force": "yarn lerna run release",
"foundryup": "curl -L https://foundry.paradigm.xyz | bash && bash ~/.foundry/bin/foundryup",
"link:packages": "yarn lerna run link",
"docs": "yarn lerna run docs && yarn retype:updateversion && yarn retype build",
"docs:dev": "yarn retype watch .",
"retype:updateversion": "sed \"s/label: .*/label: $(yarn list --pattern @latticexyz/solecs | grep -e @latticexyz | sed \"s/.*@//\")/\" retype.yml > retype.yml.tmp && mv retype.yml.tmp retype.yml",
"test": "yarn workspaces run test",
"yalc:release": "yarn entry:dist && yarn lerna exec yalc push",
"yalc:reset": "yarn entry:src",
"entry:dist": "yarn lerna run prepack",
"entry:src": "yarn lerna run postpack"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md,sol}": "prettier --write"
}
}