-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 855 Bytes
/
package.json
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
{
"name": "default-repository",
"private": true,
"type": "module",
"description": "default repository for HugoRCD",
"author": "HugoRCD",
"funding": "https://github.com/sponsors/HugoRCD",
"repository": {
"type": "git",
"url": "git+https://github.com/HugoRCD/default-repository.git"
},
"bugs": {
"url": "https://github.com/HugoRCD/default-repository/issues"
},
"scripts": {
"automd": "automd",
"typecheck": "tsc --noEmit",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bun run lint && changelogen --release --push"
},
"devDependencies": {
"@hrcd/eslint-config": "^2.2.1",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"eslint": "^9.20.1",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
},
"publishConfig": {
"access": "public"
}
}