-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "setup-watcom",
"private": true,
"main": "dist/index.js",
"description": "Open Watcom Setup GitHub Action",
"repository": {
"type": "git",
"url": "https://github.com/open-watcom/setup-watcom.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build lib/main.js -o packed",
"dev": "npm run build && npm run pack && node packed/index.js",
"all": "npm run format && npm run lint && npm run build && npm run pack"
},
"keywords": [
"GitHub",
"Actions",
"Watcom"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/open-watcom/setup-watcom/issues"
},
"homepage": "https://github.com/open-watcom/setup-watcom",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@actions/http-client": "^3.0.2",
"@types/node": "^24.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.39.4",
"eslint-plugin-github": "^6.0.0",
"js-yaml": "^4.1.0",
"prettier": "3.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
}
}