-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "xcode-packages-update",
"version": "2.0.1",
"description": "Resolves Xcode SPM dependencies and reports what changed",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "esbuild src/main.entry.ts --bundle --platform=node --format=cjs --outfile=dist/main/index.cjs && esbuild src/post.entry.ts --bundle --platform=node --format=cjs --outfile=dist/post/index.cjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"all": "npm run format:write && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.0.18"
}
}