-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "@sciux/monorepo",
"type": "module",
"version": "0.0.8",
"private": true,
"packageManager": "pnpm@10.4.0",
"scripts": {
"build": "nr -r build",
"dev": "nr --parallel dev",
"lint": "eslint --cache .",
"prepublishOnly": "nr build",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"release": "bumpp -r && pnpm -r publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"preview": "pnpm vite ./test",
"playground": "pnpm vite ./playground",
"playground:build": "pnpm build"
},
"dependencies": {
"mermaid": "^11.8.0",
"monaco-editor": "^0.52.2"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"pnpm": "catalog:",
"simple-git-hooks": "catalog:",
"tsup": "^8.5.0",
"tsx": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}