-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.61 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
46
47
48
49
50
51
52
{
"name": "scrolled",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Self-hostable, local-first wiki for Mushroom Game data. Ships code only — users provide their own files.",
"license": "Apache-2.0",
"author": "Nicholas Thomson (RedbackThomson)",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "pnpm --filter @scrolled/web dev",
"dev:fixed": "pnpm --filter @scrolled/web dev:fixed",
"dev:identity": "pnpm --filter @scrolled/web dev:identity",
"build": "pnpm --filter @scrolled/web build",
"build:fixed": "pnpm --filter @scrolled/web build:fixed",
"build:identity": "pnpm --filter @scrolled/web build:identity",
"preview": "pnpm --filter @scrolled/web preview",
"dataset:build": "pnpm --filter @scrolled/extractor dataset:build",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm -r test",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html,yml,yaml}": [
"prettier --write"
]
}
}