-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.49 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.49 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
{
"name": "lexi",
"version": "0.1",
"description": "Report a readability score for Markdown files in your pull requests",
"author": "Rebilly Inc",
"repository": "https://github.com/Rebilly/lexi",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "vitest run",
"format": "prettier --write .",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint .",
"all": "npm run build && npm run format && npm run lint && npm test",
"run:local:report": "tsx ./src/cli/report.ts",
"run:local:debugfile": "tsx ./src/cli/debug-file.ts",
"playground:dev": "vite --config ./playground/vite.config.ts",
"playground:build": "vue-tsc --project ./playground && vite build --config ./playground/vite.config.ts"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"glob": "^13.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"strip-markdown": "^6.0.0",
"text-readability": "^1.1.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@guolao/vue-monaco-editor": "^1.6.0",
"@rebilly/revel": "^12.22.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/mdast": "^4.0.4",
"@types/node": "^25.5.0",
"@vitejs/plugin-vue": "^6.0.5",
"commander": "^14.0.0",
"eslint": "^9.39.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"js-yaml": "^4.1.1",
"moment": "^2.30.1",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vite-plugin-mkcert": "^1.17.10",
"vitest": "^4.1.0",
"vue": "^3.5.30",
"vue-codemirror": "^6.1.1",
"vue-tsc": "^3.2.6"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false
},
"resolutions": {
"text-readability/syllable/trim": "^0.0.3"
}
}