-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.81 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
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
{
"name": "readme-reality",
"version": "0.1.4",
"description": "Deterministic CLI and GitHub Action that detects broken setup instructions in README files.",
"type": "module",
"bin": {
"readme-reality": "dist/cli.js"
},
"files": [
"dist/cli.js",
"lib/cli.js",
"lib/core/*.js",
"lib/markdown/*.js",
"lib/reporters/*.js",
"lib/rules/*.js",
"lib/shell/*.js",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && npm run bundle:action",
"bundle:action": "node scripts/bundle-action.mjs",
"dev": "tsx src/cli.ts",
"check": "tsx src/cli.ts check",
"typecheck": "tsc --noEmit",
"test": "tsc -p tsconfig.json && npm run bundle:action && vitest run",
"lint": "eslint .",
"test:watch": "vitest",
"test:package": "node scripts/test-packed-cli.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.5.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@actions/core": "^3.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.8"
},
"license": "MIT",
"author": "Phan Van Toan",
"repository": {
"type": "git",
"url": "git+https://github.com/givoxxs/readme-reality.git"
},
"bugs": {
"url": "https://github.com/givoxxs/readme-reality/issues"
},
"homepage": "https://github.com/givoxxs/readme-reality#readme",
"keywords": [
"readme",
"documentation",
"static-analysis",
"code-quality",
"cli",
"github-actions",
"typescript",
"developer-tools"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}