-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.72 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": "meowdown-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "pnpm --filter ./website run dev",
"build": "pnpm -r run build",
"preview": "pnpm run build && pnpm --filter ./website run preview",
"ci:publish:snapshot": "pkg-pr-new publish --pnpm ./packages/core ./packages/react",
"lint": "pnpm run lint:eslint && pnpm run lint:oxfmt && pnpm run lint:knip",
"lint:oxfmt": "oxfmt --check",
"lint:eslint": "eslint --cache --max-warnings 0",
"lint:knip": "knip",
"fix": "pnpm run fix:oxfmt && pnpm run fix:eslint && pnpm run fix:tsconfig",
"fix:oxfmt": "oxfmt",
"fix:eslint": "eslint --cache --max-warnings 0 --fix",
"fix:tsconfig": "monorepo-typescript-references fix",
"test": "vitest",
"test:install:chromium": "playwright install chromium",
"test:install:webkit": "playwright install webkit",
"test:install:firefox": "playwright install firefox",
"bench": "vitest bench",
"typecheck": "tsc -b",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@ocavue/eslint-config": "^4.11.0",
"@ocavue/tsconfig": "^0.7.1",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.9",
"clsx": "^2.1.1",
"eslint": "^10.6.0",
"knip": "^6.23.0",
"monorepo-typescript-references": "^1.1.2",
"nano-staged": "^1.0.2",
"oxfmt": "^0.56.0",
"pkg-pr-new": "^0.0.75",
"playwright": "^1.61.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9"
},
"nano-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}