-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "markdown-action-create-indexes",
"version": "5.0.2",
"description": "The github action that creates index pages for your project",
"main": "out/action.js",
"scripts": {
"compile": "tsc && ncc build -m",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaanV2/Markdown-Action-Create-Indexes.git"
},
"keywords": [
"Github",
"action",
"markdown",
"index"
],
"author": "DaanV2",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaanV2/Markdown-Action-Create-Indexes/issues"
},
"homepage": "https://github.com/DaanV2/Markdown-Action-Create-Indexes#readme",
"devDependencies": {
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"tslint": "^6.1.3",
"typescript": "^5.7.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"picomatch": "^4.0.2"
}
}