-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"name": "setup-clojure-lsp",
"version": "1.0.3",
"private": false,
"description": "setup clojure-lsp action",
"main": "src/setup-clojure-lsp.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "esbuild src/setup-clojure-lsp.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --legal-comments=linked --footer:js='// LICENCE file contains third-party licenses'",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clojure-lsp/setup-clojure-lsp.git"
},
"keywords": [
"actions",
"clojure",
"clojure-lsp",
"github",
"setup"
],
"author": "ericdallo",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"axios": "^1.15.0",
"typescript-formatter": "^7.2.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-plugin-github": "^6.0.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
}
}