-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 948 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 948 Bytes
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
{
"name": "setup-rdflint",
"version": "4.0.0",
"description": "GitHub Action to setup rdflint",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/setup-rdflint.ts --outfile=dist/index.js --bundle --platform=node --target=node24",
"type-check": "tsc",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/imas/setup-rdflint.git"
},
"keywords": [],
"author": "IM@Study",
"license": "MIT",
"bugs": {
"url": "https://github.com/imas/setup-rdflint/issues"
},
"homepage": "https://github.com/imas/setup-rdflint#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@types/node": "^24.10.13"
},
"devDependencies": {
"esbuild": "^0.27.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"engines": {
"node": "24",
"pnpm": "10"
}
}