-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 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
64
{
"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": "ncc build --source-map --license licenses.txt",
"test": "vitest run",
"format": "prettier --write .",
"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.11.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"glob": "^11.0.1",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"strip-markdown": "^6.0.0",
"text-readability": "^1.1.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@guolao/vue-monaco-editor": "^1.5.4",
"@rebilly/revel": "^8.4.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.20.0",
"@vercel/ncc": "^0.38.1",
"@vitejs/plugin-vue": "^5.2.1",
"commander": "^13.0.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-prettier": "^5.2.1",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-mkcert": "^1.17.6",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-codemirror": "^6.1.1",
"vue-tsc": "^2.2.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false
},
"resolutions": {
"text-readability/syllable/trim": "^0.0.3"
}
}