forked from Lsq128/MiraFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 709 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 709 Bytes
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
{
"name": "miraframe",
"private": true,
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "pnpm --parallel -r dev",
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r exec rm -rf dist node_modules"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
}
}