-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.48 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://json.schemastore.org/package",
"author": "Romain Racamier-Lafon <[email protected]>",
"bin": {
"repo-check": "dist/repo-check.cjs"
},
"bugs": "https://github.com/Shuunen/repo-checker/issues",
"config": {
"logFile": "repo-check.log"
},
"dependencies": {
"arg": "5.0",
"shuutils": "10.1",
"sort-json": "2.0"
},
"description": "Repo maintenance made easy",
"devDependencies": {
"@biomejs/biome": "1.9",
"@types/node": "22.10",
"@types/sort-json": "2.0",
"@vitest/coverage-v8": "2.1",
"dependency-cruiser": "16.8",
"esbuild": "0.24",
"eslint": "*",
"eslint-plugin-shuunen": "0.4",
"tsup": "^8.3",
"typescript": "5.7",
"vitest": "2.1",
"watchlist": "0.3"
},
"exports": {
".": {
"import": "./dist/repo-check.js",
"require": "./dist/repo-check.cjs"
}
},
"files": [
"dist",
"eslint.config.js",
"templates"
],
"homepage": "https://github.com/Shuunen/repo-checker",
"keywords": [
"cli",
"repository",
"check",
"checker"
],
"license": "GPL-3.0",
"main": "dist/repo-check.js",
"name": "repo-check",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Shuunen/repo-checker.git"
},
"scripts": {
"build": "tsup-node && pnpm build:mark && echo build success",
"build:mark": "unique-mark dist/repo-check.{cjs,js} && echo mark success",
"check": "pnpm i && echo install success && pnpm build && pnpm start && pnpm lint && npm test && echo check success",
"dev": "watchlist src -eager -- pnpm start",
"lint": "pnpm lint:biome && pnpm lint:tsc && pnpm lint:eslint && pnpm lint:dep && echo lint success",
"lint:biome": "biome check --error-on-warnings --write --unsafe src && echo lint:biome success",
"lint:dep": "depcruise src --config && echo lint:dep success",
"lint:eslint": "eslint --cache --max-warnings 0 src && echo lint:eslint success",
"lint:tsc": "tsc --noEmit && echo lint:tsc success",
"postversion": "git push && git push --tags && pnpm build && npm publish",
"preversion": "pnpm check",
"start": "node --experimental-strip-types src/repo-check.ts",
"test": "vitest --coverage --run && echo test success",
"test:bench": "vitest bench && echo test bench success",
"test:update": "vitest --run --update && echo test update success",
"test:watch": "vitest --coverage"
},
"type": "module",
"types": "./dist/repo-check.d.ts",
"version": "1.40.0"
}