-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "@mcbe-mods/runtime-monorepo",
"type": "module",
"version": "1.0.0-beta.6",
"private": true,
"packageManager": "pnpm@10.33.1",
"description": "Monorepo for MCBE Script API runtime",
"author": "Lete114",
"license": "MIT",
"homepage": "https://github.com/mcbe-mods/runtime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcbe-mods/runtime.git"
},
"bugs": "https://github.com/mcbe-mods/runtime/issues",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"lint": "eslint",
"build": "tsdown",
"test": "pnpm -r test",
"release": "bumpp --recursive",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"lint-staged": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"tsdown": "catalog:cli",
"tsdown-stale-guard": "catalog:testing",
"typescript": "catalog:cli",
"vitest": "catalog:testing"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}