-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.15 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
{
"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": "lib/index.js",
"scripts": {
"build": "yarn tsc && ncc build --source-map --license licenses.txt",
"test": "vitest run",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"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": "^1.10.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"glob": "^7.1.7",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"strip-markdown": "^6.0.0",
"text-readability": "^1.1.0",
"unist-util-visit": "2.0.3"
},
"devDependencies": {
"@guolao/vue-monaco-editor": "^1.5.1",
"@rebilly/revel": "^6.30.47",
"@types/glob": "^8.1.0",
"@types/node": "^20.14.10",
"@typescript-eslint/parser": "^8.15.0",
"@vercel/ncc": "^0.38.1",
"@vitejs/plugin-vue": "^5.0.5",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-prettier": "^5.2.1",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-mkcert": "^1.17.6",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vue-codemirror": "^6.1.1",
"vue-tsc": "^2.0.29"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false
},
"resolutions": {
"text-readability/syllable/trim": "^0.0.3"
}
}