forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.33 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
{
"name": "mud",
"version": "0.0.0",
"private": true,
"description": "MUD is the fabric of autonomous worlds",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --concurrency 100",
"docs": "pnpm recursive run docs && pnpm prettier --write '**/*.md' && pnpm run --filter docs build:prepare && pnpm run --filter docs build",
"entry:dist": "lerna run prepack",
"entry:src": "lerna run postpack",
"foundryup": "curl -L https://foundry.paradigm.xyz | bash && bash ~/.foundry/bin/foundryup",
"gas-report": "pnpm recursive run gas-report",
"link:packages": "lerna exec 'pnpm link --global'",
"lint": "pnpm prettier:check && eslint . --ext .ts --ext .tsx",
"prepare": "husky install && (forge --version || pnpm foundryup)",
"prettier": "prettier --write '**/*.{ts,tsx,css,md,mdx,sol}'",
"prettier:check": "prettier --check '**/*.{ts,tsx,css,md,sol}'",
"release": "pnpm install && lerna publish --no-private --force-publish",
"release:canary": "lerna publish premajor --preid alpha.1 --canary --no-private --force-publish",
"release:ci": "lerna publish --no-private --force-publish --yes",
"release:manual": "pnpm --recursive --no-bail run release",
"release:yalc": "(pnpm entry:dist && lerna exec npx yalc push); pnpm entry:src",
"sort-package-json": "npx sort-package-json package.json 'packages/*/package.json' 'templates/*/package.json' 'templates/*/packages/*/package.json' 'examples/*/package.json' 'examples/*/packages/*/package.json' 'integration/*/package.json' 'integration/*/packages/*/package.json' 'docs/package.json'",
"test": "pnpm recursive run test"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,md,mdx,sol}": "prettier --write",
"package.json": "pnpm sort-package-json"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"chalk": "^5.2.0",
"eslint": "8.29.0",
"husky": ">=6",
"lerna": "^6.6.1",
"lint-staged": ">=10",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"rimraf": "^3.0.2",
"turbo": "^1.9.3",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
}
}