-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 927 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 927 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
{
"name": "stash-plugins",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0-only",
"description": "Monorepo of Stash plugins, published as a single GitHub Pages plugin source.",
"packageManager": "pnpm@11.15.0",
"scripts": {
"build": "pnpm -r --if-present build",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm -r --if-present test",
"docs": "pnpm -r --if-present run docs",
"docs:check": "pnpm -r --if-present run docs -- --check",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run docs:check && pnpm run test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.9.0",
"prettier": "^3.9.6",
"typescript-eslint": "^8.66.0"
}
}