-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
76
{
"name": "wordpress-version-checker",
"version": "2.2.3",
"description": "A GitHub app to automatically create issues when a plugin \"tested up to\" version doesn't match the latest WordPress version.",
"keywords": [
"wordpress",
"plugin",
"github app",
"automation",
"version check"
],
"homepage": "https://github.com/skaut/wordpress-version-checker#readme",
"bugs": {
"url": "https://github.com/skaut/wordpress-version-checker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/wordpress-version-checker.git"
},
"license": "MIT",
"author": "Marek Dědič",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"sideEffects": true,
"files": [
"action.yml",
"app.yml",
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "vite build",
"clean": "rimraf dist/*",
"lint": "run-p -c --aggregate-output lint:*",
"lint:eslint": "eslint --color",
"lint:typecheck": "tsc --noEmit",
"test": "vitest",
"test-coverage": "vitest run --coverage"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"compare-versions": "^6.1.1",
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.1.0",
"@eslint/markdown": "^7.5.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.12",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-package-json": "^0.91.0",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-prettier": "^5.5.5",
"mocked-env": "^1.3.5",
"nock": "^14.0.11",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vitest": "^4.0.4"
}
}