-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "root",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.20.0",
"description": "A typed error registry for TypeScript. Errors are data—define them like it.",
"author": "Franco P. Romano L. ",
"license": "MIT",
"homepage": "https://github.com/fprl/errata#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fprl/errata.git"
},
"bugs": "https://github.com/fprl/errata/issues",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"lint": "eslint",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"lint-staged": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"typescript": "catalog:cli"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}