-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 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
53
54
55
56
57
58
{
"name": "markput",
"version": "0.6.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r run dev",
"dev:react:app": "pnpm -F @markput/react-app dev",
"dev:react:sb": "pnpm -F @markput/react-storybook run dev",
"dev:vue:app": "pnpm -F @markput/vue-app dev",
"dev:vue:sb": "pnpm -F @markput/vue-storybook run dev",
"dev:website": "pnpm -F @markput/website run dev",
"build": "pnpm -r run build",
"build:react": "pnpm -F @markput/react run build",
"build:react:sb": "pnpm -F @markput/react-storybook run build",
"build:vue": "pnpm -F @markput/vue run build",
"build:vue:sb": "pnpm -F @markput/vue-storybook run build",
"test": "pnpm -r run test",
"test:ui": "pnpm -r run test:ui",
"test:watch": "pnpm -r run test:watch",
"test:coverage": "pnpm -r run coverage",
"bench": "pnpm -r run bench",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"lint:fix:suggest": "oxlint . --fix-suggestions",
"lint:fix:danger": "oxlint . --fix-dangerously",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"typecheck": "pnpm -r run typecheck",
"clean": "git clean -xdf",
"clean:dry": "git clean -xdn",
"preinstall": "npx only-allow pnpm",
"publish": "pnpm -F @markput/react run publish",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.16.0",
"playwright": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"oxlint --fix",
"oxfmt"
],
"*.{json,css,html}": [
"oxfmt"
]
},
"engines": {
"pnpm": ">=9"
}
}