-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 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
29
30
{
"name": "mini-apps",
"type": "module",
"version": "0.5.0",
"private": true,
"packageManager": "pnpm@10.24.0",
"license": "MIT",
"scripts": {
"docs:dev": "pnpm run -C ./docs/ dev",
"docs:build": "pnpm run -C ./docs/ build",
"docs:preview": "pnpm run -C ./docs/ preview",
"build": "pnpm run --recursive --filter=!docs build",
"typecheck": "tsc --build --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deps": "taze --write --interactive --recursive --include-locked",
"release": "bumpp --recursive"
},
"devDependencies": {
"@antfu/eslint-config": "6.7.3",
"@types/node": "22.19.3",
"bumpp": "10.3.2",
"eslint": "9.39.2",
"eslint-plugin-format": "1.2.0",
"taze": "19.9.2",
"tsdown": "0.18.4",
"typescript": "5.9.3",
"yaml": "2.8.2"
}
}