-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
48
49
50
51
{
"name": "update-git-submodules",
"description": "Update git submodule(s) to their latest commit or tag",
"version": "2.1.3",
"author": "Goudham <sgoudham@gmail.com>",
"private": true,
"homepage": "https://github.com/sgoudham/update-git-submodules",
"repository": {
"type": "git",
"url": "git+https://github.com/sgoudham/update-git-submodules.git"
},
"bugs": {
"url": "https://github.com/sgoudham/update-git-submodules/issues"
},
"keywords": [
"actions",
"node",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.11.0",
"scripts": {
"build": "pnpm exec ncc build src/index.ts -o dist --source-map --license licenses.txt",
"build:watch": "pnpm build -- --watch",
"test": "vitest",
"test:run": "vitest run",
"test:cov": "vitest run --coverage",
"build:test": "pnpm build && pnpm test:run"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"ini": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/ini": "^4.1.1",
"@types/node": "^22.2.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^3.0.0",
"typescript": "^5.5.4",
"vitest": "^3.0.0"
}
}