-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "unison-setup-action",
"version": "0.1.0",
"private": true,
"description": "Install UCM",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/setup.ts --source-map --minify --out dist/setup && ncc build src/save.ts --source-map --minify --out dist/save",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"all": "npm run build && npm run format-check && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neandertech/setup-unison.git"
},
"keywords": [
"actions",
"unison",
"ucm",
"setup"
],
"author": "Olivier Mélois",
"license": "Apache2",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/cache": "^4.1.0",
"@actions/tool-cache": "^2.0.2",
"compare-versions": "^6.1.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.38.0",
"eslint-plugin-github": "^5.1.8",
"js-yaml": "^4.1.0",
"prettier": "3.6.2",
"typescript": "^5.9.3"
}
}