generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 2.26 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@volta-cli/action",
"version": "4.2.1",
"private": true,
"description": "Setup volta for usage in your CI runs",
"keywords": [
"actions",
"node",
"setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/volta-cli/action.git"
},
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all build:clean build:ts build:dist build:docs",
"build:clean": "rimraf dist lib",
"build:dist": "ncc build src/index.ts",
"build:ts": "tsc",
"build:docs": "action-docs --update-readme",
"lint": "npm-run-all lint:*",
"lint:files": "eslint --cache .",
"lint:types": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@types/node": "^18.7.15",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vercel/ncc": "^0.38.1",
"action-docs": "^2.4.2",
"broccoli-test-helper": "^2.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"nock": "^13.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"typescript": "^5.0.4",
"uuid": "^10.0.0",
"vitest": "^2.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"after:bump": "npm run build"
},
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
},
"volta": {
"node": "20.11.0",
"npm": "10.4.0"
}
}